我想使用gnuplot绘制一系列点,一个平面以及与该平面的交点。为此,我创建了以下gnuplot脚本:
set title 'Homogeneous field with plane intersection'
set xlabel 'x'
set ylabel 'y'
set zlabel 'z'
set parametric
splot 'points.txt' with linespoints, 'intersectionPoints.txt' with points
pointtype 7 lc rgb 'red',
60 + 0 * u, u, v
一切正常,但参数平面的尺寸太小。如何让gnuplot自动调整平面大小以大致匹配其余图的尺寸?
答案 0 :(得分:2)
您必须设置两个参数u
和v
的范围,例如
set urange [-50:250]
set vrange [-20:20]
来自help parametric
:"目前,这些参数变量的默认范围是[-5:5]。期望将范围设置为更有意义的东西。"。