Saving loop values as column vector

5 views (last 30 days)
Deniz Terzioglu
Deniz Terzioglu on 30 Nov 2021
Answered: Voss on 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

Answers (1)

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

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!