Store only 4 value from a loop

1 回表示 (過去 30 日間)
m m
m m 2019 年 11 月 13 日
回答済み: Adam 2019 年 11 月 13 日
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?

回答 (1 件)

Adam
Adam 2019 年 11 月 13 日
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]

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by