MATLAB: I have 2 tables have same number of columns i need to marge without key

arrayMATLABtable

i have 2 tables have same number of columns i need to marge without key the first table have 5 columns and anther table have 2 of cells how can marge ?

Best Answer

result_table=[table1,table1]
Make sure that both tables do not have the same column variable names and both have same number of rows.
Or join function