extract matrix from for loop
古いコメントを表示
Hi,
I want to extract a 2x2 matrix from each iteration of a for loop. Normally I would use something like
for loop=1:1:10
m=[a b c d];
m2(loop)=m;
end
but this doesn't work because of the increased dimensions. Can anyone help?
採用された回答
その他の回答 (1 件)
Sean de Wolski
2011 年 5 月 16 日
m2 = repmat(m,[1 10]);
or
m2 = repmat(m,[10 1]);
カテゴリ
ヘルプ センター および File Exchange で MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!