1

私は MATLAB GUI の初心者であり、これを行う簡単な方法を知りたいだけです。

2 つの list uicontrol、1 つの push button uicontrol、および 1 つの static text の4 つのウィジェットがありますuicontrol

 function pushbutton1_Callback(hObject, eventdata, handles)
 x =get(handles.popupmenu1, 'Value')  % getting the value from the popupmenu
 % doing something with it
 y=get(handles.popupmenu2, 'Value')  %  getting the value and processing it 
 % doing something with it

 total=x+y
 set(handles.text1, 'String', num2str(total))  % set to total...but
 % I really want it to be a string with a total.  like 'Your total is %s', total

テキスト文字列の設定を手伝ってもらえますか?

4

1 に答える 1

2

そのようなことをする必要があります:

str = sprintf('your total is %s', num2str(total)); % assuming total is a number, not a string
set(handles.statictext1, 'String', str); % replace handles.statictext1 by whatever the handle your static text box is
于 2013-11-08T14:31:08.280 に答える