how can i set all of them concurrently in gui

2 vues (au cours des 30 derniers jours)
Yunus
Yunus le 26 Mai 2013
a1=double2str(set(handles.edit4,'string',svr));
a2=double2str(set(handles.edit12,'string',yy));
a3=double2str(set(handles.edit3,'string',xx));

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 26 Mai 2013
Modifié(e) : Azzi Abdelmalek le 26 Mai 2013
a1=double2str(set(handles.edit4,'string',svr));
This does not make any sense. What do you want to achieve?
set(handles.edit4,'string',svr)
is more logical, or maybe
set(handles.edit4,'string',num2str(svr))

Plus de réponses (1)

Yunus
Yunus le 26 Mai 2013
Thaks a lot for helping . it is working

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by