MATLAB: Joining tables stored in a cell array

cellconvertdatadisplayjoin;MATLABtable

Hi guys,
I have this cell array here, filled with N tables (N = 10)
There is a total of 63 rows and 12 columns, I am trying to extract everything so that I can have a 63×12 table containing all the data
How do I join all of the tables together and display them as one big table?
Thank you!!!

Best Answer

I think you are looking for vertcat,
Result = vertcat(Data{:});
Related Question