New column to a table with the dynamic name
3 ビュー (過去 30 日間)
古いコメントを表示
Zeynab Mousavikhamene
2019 年 11 月 20 日
回答済み: Walter Roberson
2019 年 11 月 20 日
I new to add a new column to a table. The name of column is like this:
column_name=strcat('A_',num2str(se));
and then I will add the 'column_name' to the table like this:
table.column_name=...
How can I merge these two lines to one line? I mean defining the table column and adding it to the table in one line?
0 件のコメント
採用された回答
Walter Roberson
2019 年 11 月 20 日
Yourtable.(expression) = value
The () are part of the syntax.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!