0

我想在 gnplot 中上一个图中的两个任意点(已知和未知)之间画一条线,我该怎么做?

4

1 回答 1

2

您可以执行以下操作:

set arrow from X1,Y1 to X2,Y2 nohead

linecolor当然,您也可以通过添加( lc)、linetype( lt) 和linestyle( )来指定颜色和线型和样式ls。例如:

set arrow from X1,Y1 to X2,Y2 lc rgb "green" nohead

或者

set arrow from X1,Y1 to X2,Y2 lc rgb "#00ff00" nohead

当您说要向未知点绘制箭头时,很难说出您想要什么。也许这是您想要的数据文件中的某些功能。如果是这种情况,您也许可以使用以下方法来获取它stats

stats 'datafile' u 1:2
set arrow from X1,Y1 to STATS_pos_min_x,STATS_min_y nohead

这将绘制一条从您定义的 X1,Y1 到最小 y 图上的点的线。

于 2013-02-26T14:23:18.627 回答