フィルターのクリア

Can you write text into gui tables?

1 回表示 (過去 30 日間)
Izuru
Izuru 2015 年 5 月 11 日
コメント済み: Izuru 2015 年 5 月 11 日
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"

採用された回答

Walter Roberson
Walter Roberson 2015 年 5 月 11 日
string_data = {stringa; stringb; stringc};
  1 件のコメント
Izuru
Izuru 2015 年 5 月 11 日
Thanks.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by