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.
是否可以用gnuplot将z轴移到x轴的中间?我在这里找到了一个很棒的 gnuplot 脚本,它几乎完美地满足了我的需求,除了 z 轴应该在 x 轴的中间上升。
默认情况下,gnuplot 会绘制一个边框并将标签放置在此边框上。
仅在底部绘制边框,即围绕 (x,y)-Plane :
set border 1+2+3+4
或完全禁用它:
设置边框 0
通过 x,y 原点绘制 zaxis,并将 ztics 放在相同的位置:
set zzeroaxis lt -1 set ztics axis
如果你愿意,x 和 y 也一样。