I have a surface heat map and want to draw a point on the maximum value. The data file has 3 columns, x, y and z. I want to plot a point at the x and y coordinates where the value of z is a maximum. This is what I currently have:
set style data lines
set dgrid3d 20,200
set pm3d map
splot "d.dat" u 1:2:3
How can I plot a point at GPVAL_DATA_Z_MAX?
