Combine table variables and assign head-variable name
5 次查看(过去 30 天)
显示 更早的评论
Hi
I'm trying to concatenate tables together. I have two variables that I combine together in multiple combinations, and each combination can have n solutions. For testing purposes I've kept it short and simple. Right now I have 5 combinations each with 3 solutions.
Using MS Paint magic I've edited the table to look like what I want

I'm pretty sure I've seen a way to do this, but I can't find the page any longer.
Don't worry about 2&3 and 4&5 being identical.
Any help would be appriciated.
1 个评论
采纳的回答
Walter Roberson
2019-1-21
https://www.mathworks.com/help/matlab/ref/mergevars.html with the Merge as Table option.
0 个评论
更多回答(2 个)
Steven Lord
2019-1-21
t1 = array2table(magic(3), 'VariableNames', {'Col1', 'Col2', 'Col3'})
t2 = array2table(eye(3))
t3 = table(t1, t2, 'VariableNames', {'subtable1', 'subtable2'})
t3.Properties.RowNames = {'huey', 'dewey', 'louie'}
To extract data:
t3{'huey', 'subtable1'}.Col1 % or
t3.subtable1{'huey', 'Col1'}
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!