Creating a table using cell arrays

5 次查看(过去 30 天)
Hi,
I am trying to create a table that has all of my varibale names on the left and then a series of results produced by different simulations be produced in sebsequent columns on the right.
I have only been able to get a single set of data to appear on a table, otherwise they appear as seperate tables. Any help would be appreciated.
Groups is an 11x1 string of the variable names
Results is a 2x1 cell array where each element is an 11x1 vector containing the results.
Table = table(Results,'RowNames',(Groups));

采纳的回答

Walter Roberson
Walter Roberson 2022-1-26
Results = {randi(9, 11, 1); "R"+randi(9,11,1)}
Results = 2×1 cell array
{11×1 double} {11×1 string}
Groups = cellstr(('a':'k').')
Groups = 11×1 cell array
{'a'} {'b'} {'c'} {'d'} {'e'} {'f'} {'g'} {'h'} {'i'} {'j'} {'k'}
Table = table(Results{:}, 'RowNames', Groups)
Table = 11×2 table
Var1 Var2 ____ ____ a 5 "R1" b 4 "R2" c 8 "R9" d 6 "R3" e 5 "R4" f 9 "R2" g 9 "R6" h 5 "R3" i 2 "R1" j 1 "R4" k 3 "R1"
  2 个评论
Johnny Dessoulavy
Johnny Dessoulavy 2022-1-26
Thank you! worked perfectly. Would you know how to change the "var1" to something else?

请先登录,再进行评论。

更多回答(0 个)

类别

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

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by