2

我正在尝试绘制两个重叠图。

第一个是一个简单的 xy 点图:

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。

如何将它们都绘制在同一张图中?

4

1 回答 1

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
于 2012-10-13T00:54:16.710 回答