How do you place values in the cells of a empty table on a GUI?
1 回表示 (過去 30 日間)
古いコメントを表示
I made GUI with a calculate button and a table; I want the results from the calculations to appear on the table. I would gladly appreciate and help, advice or link referral. thanks in advance
1 件のコメント
Walter Roberson
2013 年 6 月 4 日
please read the guide to tags and retag this question. See http://www.mathworks.co.uk/matlabcentral/answers/43073-a-guide-to-tags
採用された回答
Walter Roberson
2013 年 6 月 4 日
set() the 'data' property of the uitable to be a cell array containing the results.
There is no way at the MATLAB level to update only selected cells (there is if you go to the Java level), so you may need to get() the 'data' property in order to determine the current contents before you update it.
4 件のコメント
Iain
2013 年 6 月 4 日
Yes, roughly. You need to make sure that handles.table is the graphics handle to the table. It should have a default name like what you thought it was, but for some reason, it has either been cleared or not been set.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!