How to display 1x20 array in table ?
2 次查看(过去 30 天)
显示 更早的评论
How do i display multiple 1x20 arrays in a table with a column for the names
0 个评论
回答(1 个)
David Fletcher
2021-4-28
Do you mean something like this?
A=1:20
B=1:20
table(A',B','VariableNames',{'A_name','Another name'})
20×2 table
A_name Another name
______ ____________
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
11 11
12 12
13 13
14 14
15 15
16 16
17 17
18 18
19 19
20 20
2 个评论
David Fletcher
2021-4-28
Essentially it would be the same thing, I just didn't want to invent/type out 20 column headings
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrices and Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!