matlab如何在指定axes上作图
但我的作图程序不在gui的主程序中,是调用其他函数实现的。handles.axes在该调用函数中似乎无法传值进去 这时该怎么办呢~ 展开
2015-08-12 · 知道合伙人数码行家
方法如下:
创建一个GUI
画好了就如下图。
直接放代码了:
重点处加粗了。
% --- Executes on button press in pushbutton2.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton2 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
t = -5:.1:5;
y = sinc(t);
plot(handles.axes1,t,y,'gd');
legend(handles.axes1,'sin(x)/x');
% --- Executes on button press in pushbutton1.
function pushbutton2_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)
t = 1:.1:10;
x = sin(t);
y = cos(t);
plot3(handles.axes2,t,x,y,'r*');
legend(handles.axes2,'t-x-y');
3
plot(handles.axes1,t,y,'gd');
plot3(handles.axes2,t,x,y,'r*');
关键的就是这两句了,其它情况也是类似的。
结果就如下了