我正在尝试绘制两个重叠图。
第一个是简单的x-y点图:
plot myfile u 1:2
第二个是0级的等高线图,我可以用它绘制 以下命令:
set contour
unset surface
set view map
set cntrparam levels discrete 0
splot a0 + a1*x + a2*y + a3*x**2 + a4*x*y + a5*y**2 + a6*x**3 + a7*x**2*y + a8*x*y**2 + a9*y**3
a0
- a9
是常量
两者都使用相同的xrange和yrange。
如何在同一图表中绘制它们?
答案 0 :(得分:3)
这有点棘手。您可以使用
将轮廓写入文件未测试
set table 'datafile'
set contour
#contour options
splot ... with contours
unset table
然后你可以用行绘制数据:
set term ...
set output ...
set view map
splot myfile u 1:2:(0.0), 'datafile' u 1:2:3 w lines