gpt4 book ai didi

Gnuplot:如何使用 x1y2 轴绘制箭头

转载 作者:行者123 更新时间:2023-12-01 00:31:38 25 4
gpt4 key购买 nike

我们可以使用以下方法绘制箭头:

set arrow 1 from 0,-5 to 0,5

但是,从和到位置使用的是 x1y1 轴。

如何让位置使用 x1y2 轴?我有一个与 y1 轴不同的 y2 轴。

最佳答案

使用第二坐标系:

# Set different ranges for y1 and y2
set y2range [-1:1]; set yrange [-10:10]; set xrange [-2*pi:2*pi]; set y2tics
set multiplot layout 2,1
# Set arrow using x1y1 coordinate system
set arrow 1 from 0,0 to 1,1
plot sin(x)
# Set arrow using x2y2 coordinate system (x2 = x1 because x2 is not set)
set arrow 1 from second 0,0 to second 1,1
plot sin(x)

你可以看到区别:

enter image description here

关于Gnuplot:如何使用 x1y2 轴绘制箭头,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26951002/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com