how can i set all of them concurrently in gui

2 次查看(过去 30 天)
a1=double2str(set(handles.edit4,'string',svr));
a2=double2str(set(handles.edit12,'string',yy));
a3=double2str(set(handles.edit3,'string',xx));

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2013-5-26
编辑:Azzi Abdelmalek 2013-5-26
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))

更多回答(1 个)

Yunus
Yunus 2013-5-26
Thaks a lot for helping . it is working

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by