merge 2 tables both have the same variable name
조회 수: 24 (최근 30일)
이전 댓글 표시
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
채택된 답변
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
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 Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!