ワーク変数に代入したテーブルをAppDesignerのテーブルコンポーネントに表示させたい
5 views (last 30 days)
Show older comments
readtableで読み込んだテーブルをワーク変数に代入して処理しています。
その読み込んだテーブルをAppDesignerで作成したアプリのテーブルコンポーネントに表示させたいと考えてます。
どのように記述すればよいでしょうか?
0 Comments
Accepted Answer
Kojiro Saito
on 10 Aug 2022
uitableのColumnNameとDataを読み取ったテーブルから代入します。
App Designerでのコールバック例
t = readtable('patients.xls');
app.UITable.ColumnName = t.Properties.VariableNames;
app.UITable.Data = t;
2 Comments
More Answers (0)
See Also
Categories
Find more on App Designer を使用したアプリ開発 in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!