Merging Tables from 3 other tables

1 view (last 30 days)
Alana Mera
Alana Mera on 14 Oct 2021
Edited: Kevin Holly on 14 Oct 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"

Answers (1)

Kevin Holly
Kevin Holly on 14 Oct 2021
Edited: Kevin Holly on 14 Oct 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)

Categories

Find more on Tables in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!