How to save matrix created in each iteration
1 view (last 30 days)
Show older comments
Vishal Sharma
on 18 Jan 2017
Edited: Andrei Bobrov
on 18 Jan 2017
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 Comments
Accepted Answer
Andrei Bobrov
on 18 Jan 2017
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 Comments
More Answers (0)
See Also
Categories
Find more on Numeric Types in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!