# set terminal png transparent nocrop enhanced font arial 8 size 420,320 # set output 'contours.18.png' set samples 25, 25 set isosamples 26, 26 set contour base set cntrparam bspline set title "3D gnuplot demo - contour of Sinc function" 0.000000,0.000000 font "" set xlabel "X axis" -5.000000,-2.000000 font "" set ylabel "Y axis" 4.000000,-1.000000 font "" set zlabel "Z axis" 0.000000,0.000000 font "" set zrange [ * : * ] noreverse nowriteback # (currently [-1.00000:1.00000] ) splot [-12:12.01] [-12:12.01] sin(sqrt(x**2+y**2)) / sqrt(x**2+y**2)