MATLAB: Cell array of nested cells

catcell arraycellsconcatenatenested

goo morning, I have a cell array made of cells of dimension either n X 218 or empty cells, like that:
{20388x218 cell}
{20194x218 cell}
{20050x218 cell}
{11704x218 cell}
{}
{}
{}
{}
{}
{}
and I want to concatenate them in order to get a cell array (n X 218) where n is the sum of 20388,20194, etc.,possibly without a loop.
Any ideas?

Best Answer

It's simply:
vertcat(cellarray{:});