MATLAB: Convert a table of tables in a single table

cellMATLABtable

I have an object with 1×60 cell, where any single cell it's a table. How I can convert this object in a single table, where all columns of the original object are the columns of the new table?

Best Answer

Okay, what you have is new in R2020a. Here is an example:
a{1}=table(rand(9,1));
a{2}=table(rand(9,1));
b=cellfun(@table2array,a,'UniformOutput',false);
c=cell2mat(b);
d=table(c)