Borrar filtros
Borrar filtros

Creating a table using cell arrays

5 visualizaciones (últimos 30 días)
Johnny Dessoulavy
Johnny Dessoulavy el 25 de En. de 2022
Comentada: Walter Roberson el 26 de En. de 2022
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));

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Structures en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by