MATLAB: How to create a matrix from cells with different size and concatenate them

cellcell arraysmatrix

I have a cell array called Rcalc (1 x 91) and each cell has different size (see photos). I need a matrix of only one column and n rows. How can i do? I'm really new in matlab.
Screenshot_2.png

Best Answer

vertcat(Rcalc{:})