GUI help in calling an if elseif else function
5 ビュー (過去 30 日間)
古いコメントを表示
Hi all,
I am trying to call out this if elseif else function in the GUI. So basically, the "what case box" represent the casenum, and the empty static box should call out a msg when "what case box" has a value.


0 件のコメント
回答 (1 件)
Walter Roberson
2019 年 7 月 16 日
Use the Callback property of the edit box to trigger the action. Remember that the edit box will be char (or cell array of char if Max>1 for the edit box) so you will need to str2double.
Note: you should not have any condition on the "else".
4 件のコメント
Walter Roberson
2019 年 7 月 16 日
What is the result you expect from
str2double(set(handles.output, 'string'))
? Notice that is a set() call, not a get() call.
参考
カテゴリ
Help Center および File Exchange で Characters and Strings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
