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.
如何更改 IDL 中 3D 轴的刻度值?我有一个 200 x 200 的数据数组,刻度值范围从 0 到 200。但我希望 x 的刻度值从 3417000 到 3419000,y 的刻度值从 5334000 到 5336000。
非常感谢,哈拉尔德
我建议使用关键字XTICKNAMES而XTICKS不是全局系统变量。
XTICKNAMES
XTICKS
我刚刚找到了我的问题的解决方案:
!X.TICKNAME = ['3417000', '3417500', '3418000', '3418500', $ '3419000'] !X.TICKS = 4
谢谢,
哈拉尔