How do I fill in the data table to the image so it appears uitable1?
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
How do I fill in the data table to the image so it appears uitable1?
0 Kommentare
Antworten (2)
Image Analyst
am 1 Apr. 2016
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);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!