Axes在MATLAB GUI中占据整个屏幕

时间:2015-04-19 05:49:31

标签: matlab user-interface resize axes

必须有一个简单的答案。经过大量的搜索后,我找不到合适的答案。

这是我想使用GUIDE工具制作的。

enter image description here

这就是我得到的。 (注意:图是使用子图功能制作的)

enter image description here

我做错了什么?该情节不应该简单地适合预定义的轴1' GUIDE界面中的矩形?

2 个答案:

答案 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')