如何在MATLAB图中找到轴的最小值和最大值?
答案 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
ylim
或zlim
检索最小值和最大值或
xlim([minValue maxValue])
设置限制。
有关其他参数,请参阅set or query axis limits。