I know that for the 4th color chart (3d surface, and the color is set by the 4th field), I can use the format data file
and then use
set pm3d splot "datafile.dat" u 1:2:3:4 with pm3d
On the other hand, I know how to make a simple surface plot where the values of X and Y are implicit, while the value of Z is in matrix format:
#Z DATA ONLY 0 1 4 4 splot "datafile.dat" matrix
Is there a way to make 4d color graphics using this matrix format? For example, taking Z data from one file and corresponding color data from another file, or combining Z and color values into one file in matrix format?
source share