How to save matrix created in each iteration
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Vishal Sharma
el 18 de En. de 2017
Editada: Andrei Bobrov
el 18 de En. de 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 comentarios
Respuesta aceptada
Andrei Bobrov
el 18 de En. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Numeric Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!