how can i set all of them concurrently in gui
1 view (last 30 days)
Show older comments
a1=double2str(set(handles.edit4,'string',svr));
a2=double2str(set(handles.edit12,'string',yy));
a3=double2str(set(handles.edit3,'string',xx));
0 Comments
Accepted Answer
Azzi Abdelmalek
on 26 May 2013
Edited: Azzi Abdelmalek
on 26 May 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))
0 Comments
More Answers (1)
See Also
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!