Saving loop values as column vector

4 visualizzazioni (ultimi 30 giorni)
Deniz Terzioglu
Deniz Terzioglu il 30 Nov 2021
Risposto: Voss il 30 Nov 2021
I have a very simple loop that gives out values for d. How would I make it so that these values are saved to a 1 by n matrix?
c=6.25;
x=2.5;
>> for loop = 1:25
d=c-(c^-2+x*c)
c=d;
end

Risposte (1)

Voss
Voss il 30 Nov 2021
d = zeros(1,25);
c = 6.25;
x = 2.5;
for loop = 1:25
d(loop) = c-(c^-2+x*c);
c = d(loop);
end

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by