gpt4 book ai didi

gnuplot - 散点图(轮廓、 View map )并在同一图形上绘图

转载 作者:行者123 更新时间:2023-12-04 05:29:00 26 4
gpt4 key购买 nike

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

第一个是一个简单的 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。

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

最佳答案

这是一个有点棘手的问题。您可以使用将轮廓写入文件

未经测试

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

关于gnuplot - 散点图(轮廓、 View map )并在同一图形上绘图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12868173/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com