Justace Clutter wrote:
> I have a small question concerning plotting. I have a 4-D data set,
> x,y,z, and scalar value. I would like to plot this and get a grid a 3D
> grid with the color of the grid point mapped to a color based on the 4th
> column number. I thought this was the default for the pm3d style. But
> it is not.
I wonder what made you think it would be...
PM3D plots coloured solid surfaces. Not grids (--> lines), not points,
but solid-filled triangulated surface meshes.
set pm3d explicit
splot 'datafile' using 1:2:3:4 with points palette
should do what you want.
|