How do I fill in the data table to the image so it appears uitable1?

7 ビュー (過去 30 日間)
Marquel Dwi Putranto
Marquel Dwi Putranto 2016 年 4 月 1 日
回答済み: Image Analyst 2016 年 4 月 1 日
How do I fill in the data table to the image so it appears uitable1?

回答 (2 件)

Clément P
Clément P 2016 年 4 月 1 日
Hi Marquel,
You need to use the handle of your uitable.

Image Analyst
Image Analyst 2016 年 4 月 1 日
You can do this
set(handles.uitable1, 'data', yourData);
You can probably use OOP and do it like this if you have R2014b or later:
handles.uitable1.data = yourData;
If you're not using GUIDE, get rid of the handles. prefix.
set(uitable1, 'data', yourData);

カテゴリ

Help Center および File ExchangeDevelop Apps Using App Designer についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by