isb=6;
for i=1:3
nta=(1+isb).^2/isb
isb=nta;
end
Hello everyone. I have just started to use MATLAB and I wrote the code above. My question is: When I ran this code, MATLAB gave me only last value of nta. But I need all nta values as an matrix. How can I write it? Thanks.

2 Kommentare

Jonas
Jonas am 9 Mai 2021
use nta(i) in both cases
Ulrich Achas
Ulrich Achas am 9 Mai 2021
thank you.

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Mazdack Ameri
Mazdack Ameri am 9 Mai 2021
Bearbeitet: Mazdack Ameri am 9 Mai 2021

1 Stimme

you could do something like this:
isb=6;
nta_matrix = zeros(3,1); %initializing, it usually saves memory.
for i=1:3
nta_matrix(i) = (1+isb).^2/isb;
isb=nta_matrix(i);
end

Weitere Antworten (0)

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Hilfe-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