Borrar filtros
Borrar filtros

How to save matrix created in each iteration

3 visualizaciones (últimos 30 días)
Vishal Sharma
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

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Error Functions en Help Center y File Exchange.

Etiquetas

Aún no se han introducido etiquetas.

Community Treasure Hunt

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

Start Hunting!

Translated by