converting a cell array to a matrix
21 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
AA
el 26 de Nov. de 2014
Respondida: Azzi Abdelmalek
el 26 de Nov. de 2014
consider the following example
a={rand(1877958,7); rand(1251972,7)};
i want this to be converted to a matrix. i know that the rows are not the same but the remaining rows can be filled with zeros. how can i do that?
thanks
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 26 de Nov. de 2014
a={rand(1877958,7); rand(1251972,7)};
n=max(cellfun(@(x) size(x,1),a));
b=cell2mat(cellfun(@(x) [x ;zeros(n-size(x,1),7)],a,'un',0))
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Resizing and Reshaping Matrices 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!