Saving all output of for loop

1 Ansicht (letzte 30 Tage)
Tchilabalo
Tchilabalo am 12 Mai 2019
Kommentiert: madhan ravi am 16 Mai 2019
for i=1:1500
X1=J(i)-sqrt((D(i)^2)/((sqrt(A(i))+1)))
Y1=I(i)-A(i)*(J(i)-X1)
X2=J(i)+sqrt((D(i)^2)/((sqrt(A(i))+1)))
Y2=I(i)+A(i)*(X2-J(i))
end
coord=[X1(:),Y1(:),X2(:),Y2(:)]
%coord
writematrix(coord,'Coord_15.csv')
I am trying to save the coordinates (X1, X2, Y1,Y2) from a for loop as shown in the code above. All inputs (I, J, A, D) are columns vectors , but i only the last iteration is saved. I will appreciate any help.

Akzeptierte Antwort

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 12 Mai 2019
Hi,
Simply add (i) after your output variables, viz. X1, Y1, X2, Y2:
for i=1:1500
X1(i)=J(i)-sqrt((D(i)^2)/((sqrt(A(i))+1)))
Y1(i)=I(i)-A(i)*(J(i)-X1)
X2(i)=J(i)+sqrt((D(i)^2)/((sqrt(A(i))+1)))
Y2(i)=I(i)+A(i)*(X2-J(i))
end
coord=[X1(:),Y1(:),X2(:),Y2(:)]
%coord
writematrix(coord,'Coord_15.csv')
Good luck
  4 Kommentare
madhan ravi
madhan ravi am 16 Mai 2019
Bearbeitet: madhan ravi am 16 Mai 2019
Then why did you accept the answer if it doesn’t solve the problem??
Sulaymon Eshkabilov
Sulaymon Eshkabilov am 16 Mai 2019
Before commenting any point verify what you have stated. That is the correct answer. Vectorization is another solution.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

madhan ravi
madhan ravi am 12 Mai 2019
Bearbeitet: madhan ravi am 16 Mai 2019
You don't need a loop , this is straight forward just vectorize your code:
Note: The other answer doesn‘t show the importance of preallocation.
X1=J-sqrt((D.^2)./((sqrt(A)+1)));
Y1=I-A.*(J-X1);
X2=J+sqrt((D.^2)./((sqrt(A)+1)));
Y2=I+A.*(X2-J);
coord=[X1(:),Y1(:),X2(:),Y2(:)];
writematrix(coord,'Coord_15.csv')
  2 Kommentare
Stephen23
Stephen23 am 16 Mai 2019
+1 simple and efficient
madhan ravi
madhan ravi am 16 Mai 2019
Thank you Stephen.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by