如何在MATLAB中获得轴的上限(和下限)?

时间:2010-10-19 04:31:08

标签: matlab

如何在MATLAB图中找到轴的最小值和最大值?

2 个答案:

答案 0 :(得分:16)

以下是如何为当前轴(即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以获取更多信息。

答案 1 :(得分:2)

如果你介意去物业,请使用

xlim ylimzlim检索最小值和最大值或

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

有关其他参数,请参阅set or query axis limits