using set in matlab gui (help)
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Abraham Chan
le 14 Mar 2015
Réponse apportée : Image Analyst
le 14 Mar 2015
can I mix int and String in one Static Text?
Display=get(handles.dis1,'String');
num = str2num(Display);
if num >10
set(handles.ans1, 'String',{'the number is',num});
end
The output that i want is
the number is num
the above code only display the number is.
num value is missing
0 commentaires
Réponse acceptée
Image Analyst
le 14 Mar 2015
Use sprintf() to create a string, then send that string to the GUI with set():
txt = sprintf('The number is %f',num);
set(handles.ans1, 'String', txt);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur String Parsing 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!