フィルターのクリア

Save for loop result

1 回表示 (過去 30 日間)
Ferd
Ferd 2012 年 4 月 13 日
Hi
My Code is like this,
for i = 1:100
for j = 1:500
B
end
Result_B
end
The Result_B is a single column vector for 500j's and a single i(latest value).
What I would like is to have that Result_B to be as it is, that is a column matrix, just that with every new incremented i the result to be tacked onto the next column.
Thanks

採用された回答

Thomas
Thomas 2012 年 4 月 13 日
This video should help:
Eg>
for i = 1:100
for j = 1:500
B(i,j)=rand(1);
end
end
B will be a matrix of 100*500
  1 件のコメント
Ferd
Ferd 2012 年 4 月 13 日
Hey Kewl... Thanks! This is what I wanted.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

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