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

前端 未结 1 852
无人共我
无人共我 2020-12-19 21:22

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

相关标签:
1条回答
  • 2020-12-19 22:09

    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"
    
    0 讨论(0)
提交回复
热议问题