Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在matlab中,如何以编程方式更改绘图盘?
文档中的函数语法:
pan on pan xon pan yon pan off pan pan(figure_handle,...) h = pan(figure_handle)
该代码似乎用于启用和禁用该工具并确定垂直或水平平移方向,我如何pHandle使用pan函数或以编程方式更改带有句柄的绘图。
pHandle
pan
改变平移,我一般使用轴限位功能
xlim(aHandle, [xlow xhigh]) ylim(aHandle, [ylow yhigh]) axis(aHandle, [xliw xhigh ylow yhigh])
要专门平移,例如向左平移 5 个单位,您可以使用:
xlim(aHandle, xlim(pHandle)+5);
最后一个函数使用xlim命令读取当前的 x 轴范围,加 5,然后使用相同的函数将 x 范围设置为高 5 的值。
xlim
如果省略轴句柄aHandle,则gca使用 的结果。
aHandle
gca