I have data (like series of (x,y,z) points) and I need to plot 3d surface using real spectrum colors (from (infra)red to (ultra)violet including green) according to z. So I need the heatmap something like
So, how I can to do this?
All fine except colorizing.
If it is necessary, there is my gnuplot script:
set hidden3d
set dgrid3d 47*4,205*1 gauss 2
set pm3d
set cbrange[1.007694:1.210099]
set xrange [] reverse
unset ztics
unset key
set view 10,70
set xlabel "x"
set ylabel "y"
set ticslevel 0
set term postscript eps enhanced monochrome
set output "plot-m.eps"
splot 'plot.d' with lines
set term postscript eps enhanced color
set output "plot-c.eps"
replot
set terminal png size 1024,768 enhanced font "DejaVu Serif,20"
set output "plot-c.png"
replot