how can i set all of them concurrently in gui

a1=double2str(set(handles.edit4,'string',svr));
a2=double2str(set(handles.edit12,'string',yy));
a3=double2str(set(handles.edit3,'string',xx));

 Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 26 de Mayo de 2013
Editada: Azzi Abdelmalek el 26 de Mayo de 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))

Más respuestas (1)

Yunus
Yunus el 26 de Mayo de 2013

0 votos

Thaks a lot for helping . it is working

Categorías

Etiquetas

Preguntada:

el 26 de Mayo de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by