How to save the result of each loop separately
5 ビュー (過去 30 日間)
古いコメントを表示
I want to create two variables which are matrices is zeros(3,2) and zeros(4,2)
y = [3 4];
for i=1:length(y)
x=zeros(y(i),2)
end
I dont want the second loop to overwrite the result of the first loop.
0 件のコメント
採用された回答
Paul
2023 年 11 月 21 日
y = [3 4];
for i=1:length(y)
x{i}=zeros(y(i),2)
end
Though not shown here, x can be preallocated based on the number of elements in y.
0 件のコメント
その他の回答 (2 件)
Mathieu NOE
2023 年 11 月 21 日
hello
some solutions :
y = [3 4];
for k=1:length(y)
% solution 1 : store as cell array
x{k} =zeros(y(k),2);
% solution 2A : store as structure
s(k).data =zeros(y(k),2);
% solution 2B : another structure
t.data{k} =zeros(y(k),2);
end
x
s
t
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!