Putting the values of a cell array in one column
Mostrar comentarios más antiguos
I have this cell array named 'q' with a size (n*1).
Each cell contains (m_i) number of 1D matrices as shown in these images.
I want to put the whole values in matrices of q{n,1} in a new vector in this sequence
New_Vector1 = [q{1,1}{1,1};q{1,1}{2,1};q{1,1}{3,1}........and so on for the value of m_1];
New_Vector2 = [q{2,1}{1,1};q{2,1}{2,1};q{2,1}{3,1}........and so on for the value of m_2];
.
.
.
and so on for the value of n.
How?

Respuestas (0)
Categorías
Más información sobre Data Types en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!