gpt4 book ai didi

gnuplot - 如何在 gnuplot 中的二维热图上标记一些点?

转载 作者:行者123 更新时间:2023-12-02 00:15:56 24 4
gpt4 key购买 nike

我正在使用简单的方案从我的数据中绘制二维热图,如下所示:

set pm3d map
set pm3d interpolation 5,5
splot "file"

现在我需要在这个数据上标记几个点,也许用白色。我尝试这样做:

splot "file"; plot "points"

它不工作并写道:“不能将 pm3d 用于 2d 图”。

最佳答案

文件是什么样的?你可以这样做:

splot 'file' with pm3d, 'points' with points linecolor rgb "white"

不过,根据 'points' 的外观,您可能需要添加 using 规范:

splot 'file' with pm3d, 'points' using 1:2:(0.0) with points linecolor rgb "white"

关于gnuplot - 如何在 gnuplot 中的二维热图上标记一些点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13109657/

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