Merging Tables from 3 other tables

1 次查看(过去 30 天)
Alana Mera
Alana Mera 2021-10-14
编辑: Kevin Holly 2021-10-14
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"

回答(1 个)

Kevin Holly
Kevin Holly 2021-10-14
编辑:Kevin Holly 2021-10-14
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)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by