必须有一个简单的答案。经过大量的搜索后,我找不到合适的答案。
这是我想使用GUIDE工具制作的。
这就是我得到的。 (注意:图是使用子图功能制作的)
我做错了什么?该情节不应该简单地适合预定义的轴1' GUIDE界面中的矩形?
答案 0 :(得分:1)
我解决这个问题的方法是将轴放在一个单独的面板上,从而将它们限制在面板的大小。希望它有所帮助!
PS:我也在使用subplot
。
答案 1 :(得分:0)
如果在GUI中使用subplot
功能,它将覆盖使用GUIDE
定义的轴。相反,最好绘制两个独立的轴。
%this will plot axes 1
axes(handles.axes1)
plot(x,y)
title('Title of Axes 1'
ylabel('y Label of Axes 1')
xlabel('x Label of Axes 1')
%this will plot axes 2
axes(handles.axes2)
plot(x,y)
title('Title of Axes 2'
ylabel('y Label of Axes 2')
xlabel('x Label of Axes 2')