Combining multiple tables together

12 次查看(过去 30 天)
Alex Herron
Alex Herron 2019-6-19
编辑: Matt J 2019-6-19
I have 14 tables that I want to combine into one large table. They each have different number of rows, but have the same number of columns (9). The number of rows vary from ~10,000 to ~200,000. I thought it would be easy to combine them by essentially stacking them on top of each other, however I'm struggling to find the right command. I want the combined table to have 9 columns, and the sum of all the rows of the smaller tables.

回答(2 个)

Alex Herron
Alex Herron 2019-6-19
just found out that vertcat exists! nevermind!

Matt J
Matt J 2019-6-19
编辑:Matt J 2019-6-19
I thought it would be easy to combine them by essentially stacking them on top of each other
It is that easy,
A=array2table(rand(3,2));
B=array2table(rand(5,2));
C=[A;B]
>> C=[A;B]
C =
8×2 table
Var1 Var2
_______ _______
0.81472 0.91338
0.90579 0.63236
0.12699 0.09754
0.2785 0.97059
0.54688 0.95717
0.95751 0.48538
0.96489 0.80028
0.15761 0.14189

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by