how can i set all of them concurrently in gui
    5 ビュー (過去 30 日間)
  
       古いコメントを表示
    
a1=double2str(set(handles.edit4,'string',svr));
a2=double2str(set(handles.edit12,'string',yy));
a3=double2str(set(handles.edit3,'string',xx));
0 件のコメント
採用された回答
  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))
0 件のコメント
その他の回答 (1 件)
参考
カテゴリ
				Help Center および File Exchange で Logical についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!