How to mark some points on 2D heat map in gnuplot?

蓝咒 提交于 2019-12-18 07:09:36

问题


I am using simple scheme for plot 2D heat map from my data like this:

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

Now i need to mark few points on this data, maybe with white color. I tried to do:

splot "file"; plot "points"

and it's not working and writes: "Can't use pm3d for 2d plots".


回答1:


What does the file look like? You can do:

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

depending on what 'points' looks like though, you might need to add a using specification:

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


来源:https://stackoverflow.com/questions/13109657/how-to-mark-some-points-on-2d-heat-map-in-gnuplot

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!