按代码平移MATLAB图

时间:2012-02-23 09:49:34

标签: matlab visualization

我想做一系列数字并自动更改参数,例如:的 pan 即可。有没有办法在不使用基于鼠标的交互式模式的情况下在x轴或y轴上平移图形?


(自动生成的)结果可能如下所示: - 沿x轴负方向移动:

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:1)

我认为你可以像这样实现这个目标

a=xlim; %get the initial axes limits
xlim(a-0.5); %move the pan 0.5 unit to the right

你可以为ylim,zlim做这个