gnuplot中参数平面的大小

时间:2017-10-05 07:31:33

标签: plot geometry gnuplot points plane

我想使用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

该脚本生成以下图表: enter image description here

一切正常,但参数平面的尺寸太小。如何让gnuplot自动调整平面大小以大致匹配其余图的尺寸?

1 个答案:

答案 0 :(得分:2)

您必须设置两个参数uv的范围,例如

set urange [-50:250]
set vrange [-20:20]

来自help parametric:"目前,这些参数变量的默认范围是[-5:5]。期望将范围设置为更有意义的东西。"。