Borrar filtros
Borrar filtros

Can you write text into gui tables?

1 visualización (últimos 30 días)
Izuru
Izuru el 11 de Mayo de 2015
Comentada: Izuru el 11 de Mayo de 2015
Hi,
I've created a table (12 rows 1 column) and I'm currently writing numbers into the column. I was wondering how to write strings into the columns?
Would this work?;
string_data = [stringa; stringb; stringc];
set(handles.table, 'Data', string_data);
I keep getting this error when i try that
"While setting the 'Data' property of Table: Data must be a numeric, logical, or cell array"

Respuesta aceptada

Walter Roberson
Walter Roberson el 11 de Mayo de 2015
string_data = {stringa; stringb; stringc};

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by