MATLAB GUI:单击pushbutton在axes中画图

单击按钮在axes对象中画图

效果如图所示:
MATLAB GUI:单击pushbutton在axes中画图_第1张图片
在Opening函数中插入如下内容

x=0:0.01:10;
y1=x.*sin(x);
y2=cos(x);

setappdata(hObject,'x',x);
setappdata(hObject,'y1',y1);
setappdata(hObject,'y2',y2);

pushbutton1的回调函数

x=getappdata(handles.figure1,'x');
y1=getappdata(handles.figure1,'y1');
plot(handles.axes1,x,y1,'r-');

pushbutton2的回调函数:

x=getappdata(handles.figure1,'x');
y2=getappdata(handles.figure1,'y2');
plot(handles.axes1,x,y2,'k:');

清除按钮的回调函数:

cla( handles.axes1)

你可能感兴趣的:(MATLAB,GUI设计,matlab)