Skip to content
Permalink
c2f62892bb
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
5 lines (5 sloc) 176 Bytes
function h_diff = dprojectile_theta(theta)
syms theta;
h(theta) = -1/2*9.81*(2.37/(15*cos(theta)))^2+15*sin(theta)*(2.37/15*cos(theta))+1.72;
h_diff = diff(h(theta),theta)
end