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
Get step-by-step solutions from verified subject matter experts
