merge 2 tables both have the same variable name
24 views (last 30 days)
Show older comments
Bayu Ardiyanto
on 9 May 2018
Commented: Peter Perkins
on 14 May 2018
Hi, I have 2 tables, for example table a:
var_a var_b
1 a
2 b
table b:
var_a var_b
3 c
4 d
They have the same variable names for both of the tables but different value. I want to merge those 2 table into table c which is:
var_a var_b
1 a
2 b
3 c
4 d
I think it's quite easy problem but didn't found the simple way to do it. Thank you!
0 Comments
Accepted Answer
Stephen23
on 9 May 2018
Edited: Stephen23
on 9 May 2018
vertcat(A,B)
From the vertcat help: "If the inputs are tables, vertcat concatenates by matching variable names. Variable names for all tables must be identical, except for order. Row names, when present, must be unique across tables."
2 Comments
Peter Perkins
on 14 May 2018
Also written as
[A; B]
In other words, just like what you'd do with most other kinds of MATLAB array.
More Answers (0)
See Also
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!