Vertically Concatenate Cells with Same Number of Columns
Mostrar comentarios más antiguos
I have a column of cells (column_data.png) with different number of rows but same number of columns. The cells contain numbers only. How can I vertically concatenate the cells in column_data?
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 14 de Jul. de 2015
Editada: Azzi Abdelmalek
el 14 de Jul. de 2015
cell2mat(YourCellArray)
Or Maybe your data looks like
a={num2cell(rand(2,3));num2cell(rand(1,3));num2cell(rand(4,3))};
out=cell2mat(cellfun(@(x) cell2mat(x),a,'un',0))
2 comentarios
Azzi Abdelmalek
el 14 de Jul. de 2015
a={num2cell(rand(2,3));num2cell(rand(1,3));num2cell(rand(4,3))}
b=cat(1,a{:})
Categorías
Más información sobre Cell 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!