vectors
figure_vectors
2Dvectors样式绘制从 (x,y) 到 (x+xdelta,y+ydelta) 的矢量。3Dvectors样式类似,但需要 6 列基本数据。两种情形都可以用额外的输入列 (2D 中的第 5 列,3D 中是第 7 列) 提供可变 (每个数据点) 的颜色信息 (参见linecolor和rgbcolor 变量)。在每个矢量的末端绘制一个小箭头。
4 列: x y xdelta ydelta
6 列: x y z xdelta ydelta zdelta
关键字 "with vectors" 后面可以内嵌箭头样式规范、对预定义箭头样式的引用、或者从单独列读取每个矢量所需箭头样式的索引。注意:如果选择 "arrowstyle variable",则在绘制矢量的同时填充对应的箭头属性,不能再 plot 命令中将此关键字与其他线型或箭头样式限定符混合使用。
plot ... with vectors filled heads
plot ... with vectors arrowstyle 3
plot ... using 1:2:3:4:5 with vectors arrowstyle variable
示例
plot 'file.dat' using 1:2:3:4 with vectors head filled lt 2
splot 'file.dat' using 1:2:3:(1):(1):(1) with vectors filled head lw 2
splot ... with vectors
仅支持set mapping cartesian
。set clip one
和set clip two
影响 2D 中绘制的矢量。参见set clip和arrowstyle。