Joining 2 tables to make 1 table
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Sarah Yun
el 14 de Dic. de 2019
Respondida: Jesus Sanchez
el 14 de Dic. de 2019
Hello,
I have 2 tables. I want to join these tables together to make 1 table.
They have the same number of columns.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/254444/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/254445/image.png)
What code should I use to joint them?
Thank you.
2 comentarios
Respuesta aceptada
Jesus Sanchez
el 14 de Dic. de 2019
You can unite them as if they were matrixes:
complete_table = [table1 ; table2]; % This should work to join the columns of both tables
0 comentarios
Más respuestas (1)
Guillaume
el 14 de Dic. de 2019
Sounds like you merely want to vertically concatenate your two tables. The only problem is that they don't have the same variable names, so you'll have to rename the variables of one of them:
table_old.Properties.VariableNames = table_new.Properties.VariableNames; %rename variables in old table. Could do it the other way round
merged = [table_old; table_new]
0 comentarios
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!