MATLAB: Gather many tables in one table

datatables

How can I gather data in different tables in one table.

Best Answer

That depends on whether you’re concatenating columns or adding rows.
Concatenating columns is just like regular matrix column concatenation:
Tnew = [Told Tadd];
where ‘Told’ is your original table, and ‘Tadd’ is the table you want to concatenate to it.
Adding rows is described in Add and Delete Table Rows.