MATLAB: How to add a new column to a table. The length of the column is longer and want to add from the first row till the last row of current table and neglect the rest of the column

table

Imaging there is a table that has 500 rows and I want to add a colmun which has 1000 rows to the table (adding the first 500 rows and neglecting the rest of the column).
Any suggestion?

Best Answer

Wanted = [T1,T2(1:size(T1,1),:)] %T1 table with 500 rows and the other with 1000 rows