gnuplot 中参数化平面的大小
Size of parametric plane in gnuplot
我想使用 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 自动调整平面的大小以大致匹配绘图其余部分的尺寸?
您必须设置 u
和 v
这两个参数的范围,例如
set urange [-50:250]
set vrange [-20:20]
来自 help parametric
:“目前这些参数变量的默认范围是 [-5:5]。期望将范围设置为更有意义的值。”。
我想使用 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 自动调整平面的大小以大致匹配绘图其余部分的尺寸?
您必须设置 u
和 v
这两个参数的范围,例如
set urange [-50:250]
set vrange [-20:20]
来自 help parametric
:“目前这些参数变量的默认范围是 [-5:5]。期望将范围设置为更有意义的值。”。