storing values of for loop in a long function
1 回表示 (過去 30 日間)
古いコメントを表示
So I have seen the tutorial on how to save every value of for loop in a matrix
eg:
for i=1:10
y(i)=i+rand
end
However, it doesn't seem to be too straight forward when the result of y is a consequence of a big function. I mean, if the variables a, b, c, d are dependent on i and u (a matrix) is dependent on a, b, c, d and finally y is dependent on u.
How do I solve this issue?
Hope I'm being clear enough. Cheers
1 件のコメント
Jan
2012 年 7 月 2 日
編集済み: Jan
2012 年 7 月 2 日
Please post more details, most of all what you have tried so far and which problems occurred. Currently "it doesn't seem to be too straight forward" is not exactly enough to solve your problem.
Actually the solution could be very straight, but I assume, that I simply do not know the problem.
採用された回答
Walter Roberson
2012 年 7 月 3 日
for i=1:10
a = some function of i
b = some function of i
c = some function of i
d = some function of i
u = some function of a, b, c, d
y(i) = some function of u
end
2 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!