Store only 4 value from a loop

1 view (last 30 days)
m m
m m on 13 Nov 2019
Answered: Adam on 13 Nov 2019
Hello,
i have two loops as :
nt = 15;
n=2;
for t = 1 : nt
for i = 1 : n
x(i) = ....
end
end
what i want is to store tha table for t = 1 , t= 5, t= 10 and t= 15. because i get only the last value x(1) ,x(2) at t= 15 only)
please how can i do it?

Answers (1)

Adam
Adam on 13 Nov 2019
If you have a nested loop like that you would generally want something like
x(t,i) = ...
with a 2d output to match the 2 nested for loops. If you only want results stored at t = 1, 5, 10 and 15 though then sure the outer loop should reflect that:
for t = [1 5 10 15]

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!