Info

この質問は閉じられています。 編集または回答するには再度開いてください。

computing matrices in a loop

1 回表示 (過去 30 日間)
ss
ss 2012 年 12 月 27 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
hi could we have a loop in that for any i we produce a matrix f(i), I want to store f(i) for any i, I DO'T want to have this for i=1:4 f=.... end I want to have for i=1:4 f(i)=... end that f is a 6*6 matrix. but for this there is some error of dimension. could anyone guide me what I should do? thank you
  1 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 12 月 27 日
編集済み: Azzi Abdelmalek 2012 年 12 月 27 日
Post your code, we will try to find what is wrong with it

回答 (1 件)

Kye Taylor
Kye Taylor 2012 年 12 月 27 日
編集済み: Kye Taylor 2012 年 12 月 27 日
Try using cells, as in the example:
for i = 1:4
% creates i-by-i random matrix as ith cell contents. Note curly braces
f{i} = rand(i);
end
To access the contents of the ith cell, use f{i}, while f(i) accesses the cell itself.

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by