Using strc to make elements for calling a table column does not work

2 visualizaciones (últimos 30 días)
I need to call some columns of a table in automated way. The name pof table is T and I use this line to make the T.table_column:
variable_names=strcat('T.',var(i));
and the output of this code is:
variable_names =
1×1 cell array
{'T.i_nPix'}
I need to call T.i_nPix in which T is table name and i_nPix is table column. But this format {'T.i_nPix'} which is cell array and string is not able to be recognized as table.table_column. How can I solve the issue?

Respuesta aceptada

Walter Roberson
Walter Roberson el 27 de Dic. de 2019
  4 comentarios
Stephen23
Stephen23 el 28 de Dic. de 2019
"Do you mean I should change the code lik this? strcat('T.(',var(i),')')"
No, that would be entirely the wrong way to go about this. Much simpler and more efficient to follow Walter Roberson's advice... which is the same as the MATLAB documentation:

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by