赞
踩
axes
控件实现了展示图片,动态txt
控件实现了展示或者输入参数。
在gui
界面右键点击重置
pushbotton回到代码块
callback,编写代码
以下代码是实现图片和参数数字重置,是重置按钮(puttern)的功能实现
function pushbutton1_Callback(hObject, eventdata, handles) % hObject handle to pushbutton1 (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA) % 重置清空图片 cla(handles.axes1,'reset'); cla(handles.axes2,'reset'); cla(handles.axes3,'reset'); cla(handles.axes4,'reset'); cla(handles.axes5,'reset'); % 重置清空动态txt的文字 set(handles.edit1,'string','') set(handles.edit2,'string','') set(handles.edit3,'string','') set(handles.edit4,'string','')
在gui界面右键点击退出
pushbotton回到代码块callback,编写代码
即可
close
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。