Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Marquel Dwi Putranto
Marquel Dwi Putranto le 1 Avr 2016
How do I fill in the data table to the image so it appears uitable1?

Réponses (2)

Clément P
Clément P le 1 Avr 2016
Hi Marquel,
You need to use the handle of your uitable.

Image Analyst
Image Analyst le 1 Avr 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);

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by