Saving loop values as column vector

5 vues (au cours des 30 derniers jours)
Deniz Terzioglu
Deniz Terzioglu le 30 Nov 2021
Réponse apportée : Voss le 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

Réponses (1)

Voss
Voss le 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

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by