merge 2 tables both have the same variable name

25 ビュー (過去 30 日間)
Bayu Ardiyanto
Bayu Ardiyanto 2018 年 5 月 9 日
コメント済み: Peter Perkins 2018 年 5 月 14 日
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!

採用された回答

Stephen23
Stephen23 2018 年 5 月 9 日
編集済み: Stephen23 2018 年 5 月 9 日
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 件のコメント
Bayu Ardiyanto
Bayu Ardiyanto 2018 年 5 月 9 日
Thanks!
Peter Perkins
Peter Perkins 2018 年 5 月 14 日
Also written as
[A; B]
In other words, just like what you'd do with most other kinds of MATLAB array.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by