Question: Matlab Code Problem Change For loop to While loop x=X(:,1)-X(1,1); y=Y(:,1)-Y(1,1); d=0; dc=0; t=time; tic for i=2:4926; d(i,1)=(sqrt((x(i,1)-x(i-1,1)).^2+(y(i,1)-y(i-1,1)).^2)); dc=cumsum(d,1); end toc plot(t,dc) xlabel('time'); ylabel('distance(in)'); title('cumulative

Matlab Code Problem

Change For loop to While loop

x=X(:,1)-X(1,1); y=Y(:,1)-Y(1,1); d=0; dc=0; t=time; tic for i=2:4926; d(i,1)=(sqrt((x(i,1)-x(i-1,1)).^2+(y(i,1)-y(i-1,1)).^2)); dc=cumsum(d,1); end toc plot(t,dc) xlabel('time'); ylabel('distance(in)'); title('cumulative distance');

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!