MATLAB: Combining Cells into a single cell

cell combining

How can I combine multiple cells in to a single cell
there are 6 cells, each m x n format (n is 17 in all)
I want a new cell created that just adds up below
so for example Cell1 is 50×17 Cell2 is 30×17 Cell3 is 20×17
new cell should then be : AllCell is 100×17
I thought of:
Allcell=cell(Cell1+Cell2+Cell3,17);
but what then

Best Answer

use the standard concatenation operator [ ]
AllCell = [Cell1; Cell2; Cell3; Cell4; Cell5; Cell6];