2010-10-19 100 views

回答

15

這裏是你如何可以爲當前軸做(即gca):

xLimits = get(gca,'XLim'); %# Get the range of the x axis 
yLimits = get(gca,'YLim'); %# Get the range of the y axis 
zLimits = get(gca,'ZLim'); %# Get the range of the z axis 

每個變量以上將是一個1×2含有用於各個軸的最大值和最小值陣列。你可以檢查the documentation on axes properties獲取更多信息。

2

如果你介意的屬性的方式使用

xlimylimzlim檢索的最小和最大值或

xlim([minValue maxValue])設置限制。

額外的參數見set or query axis limits