MATLAB: Joining 2 tables to make 1 table

table

Hello,
I have 2 tables. I want to join these tables together to make 1 table.
They have the same number of columns.
What code should I use to joint them?
Thank you.

Best Answer

You can unite them as if they were matrixes:
complete_table = [table1 ; table2]; % This should work to join the columns of both tables