Reduce distance between points in splot

前端 未结 1 1844
暗喜
暗喜 2020-12-20 07:37

I have this gnuplot script

reset
set palette model RGB defined (0 \"gray\", 0.1 \"white\", 0.33 \"yellow\", 0.66 \"orange\", 1 \"red\")
set xlabel \"x\"
set          


        
相关标签:
1条回答
  • 2020-12-20 07:55

    I usually go with the options

    set pm3d map
    plot file_name u 1:2:5:xtic(3):ytic(4) with image
    

    for gridded data (it makes a smaller file if you use vector formats). I suspect your problem may be to do with the fact that you specify a point style and size for your splot. So, you could try setting the pm3d map option and using splot without the point specification, or plot ... with image.

    0 讨论(0)
提交回复
热议问题