您可以使用父XLim
的{{1}}和YLim
属性来调整显示,使其仅显示第一个象限。
axes
如果你想要0到pi(180度)
hax = axes();
theta = [0.4 1.4 3.1 2.3 0.4 2.5 3.9 2.8 2.3 1.6 4.6 4.5 6.1 3.9 5.1];
rose(hax, theta, 10)
% Set the x and y limits to show only the first quadrant
hax.XLim = [0 hax.XLim(2)];
hax.YLim = [0 hax.YLim(2)];