putting some matrix in a cell arrays

I have 3 matrices:
m1[5x4];
m2[5x4];
m3[5x3];
I want to put them in a cell W{i}
for i=1:3
in a way W{1}=m1; W{2}=m2 and W{3}=m3
How could I do it? Thx

1 comentario

You already did:
W{1}=m1;
W{2}=m2;
W{3}=m3;
While there are ways of doing this in a loop, you should learn to write code without using such slow and buggy methods:

Iniciar sesión para comentar.

Respuestas (2)

Categorías

Etiquetas

Preguntada:

el 23 de Sept. de 2017

Comentada:

el 23 de Sept. de 2017

Community Treasure Hunt

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

Start Hunting!

Translated by