How to convert cell to matrix
Mostrar comentarios más antiguos
I have a cell which is given by A= 1x13cell. I want to extract the contents of the cell into the form of a matrix of size (13 x number of points each cell containd) is this possible? The number of points in each cell varies. Can you help me with this?
2 comentarios
Jos (10584)
el 16 de Jul. de 2013
I suggest you give a small example. For instance, if
C = {[1 2],[11 12 13]} % a cell array
how would you like the final matrix M to look like? Something like
1 2 NaN
11 12 13
?
Ede gerlderlands
el 16 de Jul. de 2013
Respuestas (3)
N = cellfun('length', C);
M = numel(C);
R = NaN(M, N);
for k = 1:M
R(1:N(k)) = C{k}; % Perhaps: reshape(C{k}, 1, [])
end
1 comentario
Ede gerlderlands
el 16 de Jul. de 2013
Editada: Ede gerlderlands
el 16 de Jul. de 2013
David (degtusmc)
el 16 de Jul. de 2013
Editada: David (degtusmc)
el 16 de Jul. de 2013
2 votos
Look up cell2mat. The link for the documentation is below. I hope this helps
3 comentarios
Ede gerlderlands
el 16 de Jul. de 2013
Evan
el 16 de Jul. de 2013
This will only work for cells arrays containing matrices of constant size in each array.
David (degtusmc)
el 18 de Jul. de 2013
That is true. I did not think about that. Thank you Evan.
Jos (10584)
el 17 de Jul. de 2013
Editada: Jos (10584)
el 17 de Jul. de 2013
Here is a suggestion
C = {[1 2 ;3 4],[11 12 13].',100:106} % a cell array
% make sure all elements are column vectors
C2 = cellfun(@(x) reshape(x,[],1), C,'un',0) ;
M = padcat(C2{:})
1 comentario
Tehmina Kakar
el 18 de Jul. de 2018
Thank you so much @Jos. It works for me.
Categorías
Más información sobre Multidimensional Arrays 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!