How to save for loop values?

1 Ansicht (letzte 30 Tage)
Qasim Mohammed
Qasim Mohammed am 28 Feb. 2020
Kommentiert: Star Strider am 28 Feb. 2020
f=zeros(1,M);
for i=1:M
f(i)=fd+((1+m(i)*r)/2)*f_delta;
f(i)=fd-((1+m(i)*r)/2)*f_delta;
end
I need to save both values for the addition and subtraction.
Thanks in advance.

Akzeptierte Antwort

Star Strider
Star Strider am 28 Feb. 2020
Try this:
f=zeros(2,M);
for i=1:M
f(:,i)=[fd+((1+m(i)*r)/2)*f_delta; fd-((1+m(i)*r)/2)*f_delta];
end
That saves them as different rows of a (2xM) matrix.
  2 Kommentare
Qasim Mohammed
Qasim Mohammed am 28 Feb. 2020
Thanks, it was helpful!
I need then as two columns, I transposed them.
Star Strider
Star Strider am 28 Feb. 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Startup and Shutdown 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