フィルターのクリア

how can i set all of them concurrently in gui

3 ビュー (過去 30 日間)
Yunus
Yunus 2013 年 5 月 26 日
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 Center および File ExchangeNumber Theory についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by