What am I missing here?

This is a Matlab grader problem for calculating the jumper's distance, I follow the code that my professor was provided, what am I missing here to get the final disnace?
function Dist = BJump
z0 = [0;0;pi/8;10];
dt = 0.1;
T = zeros(1,1000);
T(1) = 0;
Z = zeros(4,1000);
Z(:,1) = z0;
for j = 1:10000-1
K1 = physics(T(j),Z(:,j));
K2 = physics(T(j) + dt/2,Z(:,j) + dt/2*K1);
K3 = physics(T(j) + dt/2,Z(:,j) + dt/2*K2);
K4 = physics(T(j) + dt,Z(:,j) + dt*K3);
Z(:,j+1) = Z(:,j) + dt/6*(K1 + 2*K2 + 2*K3 + K4);
T(j+1) = T(j) + dt;
end
function dzdt=physics(t,z)
dzdt = 0*z;
dzdt(1) = z(4)*cos(z(3));
dzdt(2) = z(4)*sin(z(3));
dzdt(3) = -9.81/z(4)*cos(z(3));
D = (0.72)*(0.94)*(0.5)/2*(dzdt(1)^2 + dzdt(2)^2);
dzdt(4) = -D/80-9.81*sin(z(3));
end
end

4 个评论

Did you upload any pictures ? But there’s a lot of space and nothing’s visible.
Can you learn to use descriptive subjects, instead of just asking everytime, "What am I missing here?"
The white space is a (large) image of the problem statement. You need to scroll to the right to see it all.
Ah, yes John ;). Been using mobile for the past 30 days so it’s really difficult to answer questions.

请先登录,再进行评论。

回答(0 个)

类别

帮助中心File Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by