Arrow points are located on the file on gnuplot

后端 未结 1 573
春和景丽
春和景丽 2021-01-18 17:26

I know by this command I can create one arrow on gnuplot.

set arrow from 0,0 to 1,1

But the problem is this which I want to create a set of

相关标签:
1条回答
  • 2021-01-18 18:04

    You can plot with the with vectors style. With your data file, this would be:

    plot "data" using 1:2:($3-$1):($4-$2) with vectors
    
    0 讨论(0)
提交回复
热议问题