|
From: <HBB...@t-...> - 2007-11-13 21:11:24
|
Wesley Rodrigues wrote:
> I'm trying to plot a 2D data file on a surface (3D data file) using
> Gnuplot. I'm using the function "pm3d" to interpolation of 3D file
> (xyz.dat), and the function "splot" to plot both files. I don't be able
> of plot 2D (Brazil contour) data files on a surface.
What you're looking for would be a variation of
set pm3d explicit
set view map
splot 'contour' using 1:2:(0.0) with lines, \
'surface' using 1:2:3 with pm3d
|