我正在尝试在gnuplot中为矢量着色 我有一个数据文件,例如
0 0 0 1 1 1 1
0 0 0 -1 -1 -1 2
使用“ arrowstyle variable”命令将最后一列用于读取箭头样式,如下所示:
set style arrow 1 linecolor rgb "red"
set style arrow 2 linecolor rgb "blue"
set xrange [-1:1]
set yrange [-1:1]
set zrange [-1:1]
splot 'c:\vector.txt'using 1:2:3:4:5:6 with vectors arrowstyle variable
但是,向量都是黑色的。那是gnuplot不会从数据文件中读取样式。如果将数据放在两个文件中而不是放在一个文件中,我可以使它工作。