Merging Tables from 3 other tables

1 visualización (últimos 30 días)
Alana Mera
Alana Mera el 14 de Oct. de 2021
Editada: Kevin Holly el 14 de Oct. de 2021
I'm trying to merge 3 different tables into one cohesive table, just not sure what code to use and how to format it. If anyone could help it would be great, the tables names I'm trying to add together are called "S1" "S2" and "S3"

Respuestas (1)

Kevin Holly
Kevin Holly el 14 de Oct. de 2021
Editada: Kevin Holly el 14 de Oct. de 2021
You can use join
S12 = join(S1,S2);
Sall= join(S12,S3)
You can also use Join Tables in the live editor.
If you don't want to remove any data, you could use outerjoin
S12 = outerjoin(S1,S2);
Sall= outerjoin(S12,S3)

Categorías

Más información sobre Tables en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by