How to save matrix created in each iteration

3 次查看(过去 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

采纳的回答

Andrei Bobrov
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 个)

类别

Help CenterFile Exchange 中查找有关 Error Functions 的更多信息

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by