[gui] how to load data?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hojae Ahn
il 11 Giu 2016
Commentato: Image Analyst
il 11 Giu 2016
i want load data from workspace
i think that
set(handles.e_hole_1_min,'string','gui_H_size')
but do not working...
0 Commenti
Risposta accettata
Image Analyst
il 11 Giu 2016
Try using num2str to convert the number to a string:
set(handles.e_hole_1_min, 'String', num2str(gui_H_size));
or with recent versions:
handles.e_hole_1_min.String = num2str(gui_H_size);
2 Commenti
Image Analyst
il 11 Giu 2016
You'll have to give more information and context that that. I don't know what you're asking.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!