Converting a cell array containing more cell arrays to one cell matrix

24 次查看(过去 30 天)
Hello,
This is a disturbingly simple process that I'm having the hardest time with and I can't seem to find out how to do it from other online sources or help files. I've got a cell array, C, which contains other cell arrays (a mix between numeric data and strings) and I'm trying to "break" the contained cells to combine into one cell matrix. For example:
C=
{1x4 cell}
{1x4 cell}
{1x4 cell}
How do I break apart C to get the contents into a cell matrix of size 1x11? The result should look like:
A=
[2013] 'January' [7] 'S1.13'
[2013] 'October' [5] 'S8.13'
[2014] 'June' [8] 'S6.14'

采纳的回答

Guillaume
Guillaume 2016-2-8
If all the subcells are the same size, it's very simple to obtain your A (3x4 cell array)
C = {{[2013] 'January' [7] 'S1.13'}; {[2013] 'October' [5] 'S8.13'}; {[2014] 'June' [8] 'S6.14'}};
A = vertcat(C{:})
If they are not the same size but all row vectors, you can concatenate them horizontally instead (so A is 1x12 in this case):
A = horzcat(C{:}) %can simply be written [C{:}]
If they're all different shape, it of course cannot be done without reshaping the subcells.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by