Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Nested for loops help!
1 回表示 (過去 30 日間)
古いコメントを表示
If i have
m1(n,1)=(m2(n,1)+((m3(n,1))*p));
Where m1 m2 and m3 are all arrays. if i wanted the range of n=1:42, and the range of p=1:31, how could i tell matlab to calculate l=1:31 for every different value of n?
0 件のコメント
回答 (2 件)
BAN
2015 年 9 月 24 日
編集済み: James Tursa
2015 年 9 月 24 日
Try using this:
for n = 1:42
for p=1:31
m1(n,1)=(m2(n,1)+((m3(n,1))*p));
end
end
Here, for every value of n, that equation will be executed 31 times.
Hope it helps !!
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!