Azzera filtri
Azzera filtri

Creating a table using cell arrays

5 visualizzazioni (ultimi 30 giorni)
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));

Risposta accettata

Walter Roberson
Walter Roberson il 26 Gen 2022
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 Commenti
Johnny Dessoulavy
Johnny Dessoulavy il 26 Gen 2022
Thank you! worked perfectly. Would you know how to change the "var1" to something else?
Walter Roberson
Walter Roberson il 26 Gen 2022
Use the 'VariableNames' option

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Structures in Help Center e File Exchange

Prodotti


Release

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by