How can I concatenate tables vertically?
조회 수: 214 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2019년 7월 4일
편집: MathWorks Support Team
2022년 10월 13일
How can I concatenate two or more tables vertically if they have the same headers?
채택된 답변
MathWorks Support Team
2022년 10월 13일
편집: MathWorks Support Team
2022년 10월 13일
To concatenate two or more tables vertically, you can use "vertcat" either as a function or as an operator - just as you would do to vertically concatenate two or more arrays. The headers do not even need be in the same order. Here is an example:
myTable1 = array2table(eye(3));
myTable1.Properties.VariableNames = ["One","Two","Three"];
myTable2 = array2table(2*eye(3));
myTable2.Properties.VariableNames = ["Two","Three","One"];
myTable3 = array2table(3*eye(3));
myTable3.Properties.VariableNames = ["Three","One","Two"];
myTable = [ myTable1; myTable2; myTable3 ]
The documentation page for "vertcat" explains that this function accepts table inputs:
댓글 수: 1
Stephen23
2019년 7월 11일
편집: Stephen23
2019년 7월 11일
"...if I could create the 10 tables within a loop."
N = 10;
C = cell(1,N);
for k = 1:N
C{k} = table(...)
end
vertcat(C{:})
Although most likely you would be better off using one table, as they are specifically designed to group data and process those groups, without requiring separate tables.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!