Importing Data into GUI Table
5 ビュー (過去 30 日間)
古いコメントを表示
All,
I'm sure this is probably an easy answer, but how do you write data to a GUI handle (app.UITable)? The method below creates a new, windowed table and writes to it, but I only want to put my data into the already existing one shown below for my user interface.
[file,path] = uigetfile({'*.xlsx'},'Select an Excel File');
figure(app.UIFigure)
PathAndFile = [path,file];
t = readtable(PathAndFile);
fig = uifigure;
uit = uitable(fig,'Data',t);
uit.Data = t;
3 件のコメント
Voss
2021 年 12 月 21 日
I'm assuming uit and t are your uitable and data. If they are refered to as something else, you'd have to change the syntax, e.g., as in @Image Analyst's answer.
回答 (1 件)
Image Analyst
2021 年 12 月 21 日
app.uit.Data = t;
instead of
uit.Data = t;
didn't work, maybe try turning it from a table into an array
app.uit.Data = table2array(t);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!