How to save matrix created in each iteration
1 次查看(过去 30 天)
显示 更早的评论
n=1;
while n<4
k=[1 2 3 4;5 6 7 8];
k=k*n;
n=n+1;
display(n)
display(k)
end
0 个评论
采纳的回答
Andrei Bobrov
2017-1-18
One of ways
n=1;
k=[1 2 3 4;5 6 7 8];
out = zeros([size(k),3]);
while n<4
k=k*n;
out(:,:,n) = k;
n=n+1;
end
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Numeric Types 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!