|
From:
<br...@ph...> - 2006-03-24 15:39:27
|
Adonai Herrera Martinez wrote: > First.- I would like to assign the colours directly onto the integer > values (centred in the values: Z,A), extending to half a unit up and > down in both directions. It's probably easier to just shift the data for Z and A by half a unit: splot 'data' u ($1-0.5):($2-0.5):3 With this shift and corners2colors, it should work. > Second.- I would like to expand the x (A) axis in order to obtain square > pixels (not the rectangular ones I get now). That is to set a one-to-one > scale between both axis. set size ratio -1 Is supposed to do that. I'm not 100% sure it works in 'map' mode, though. > Three.- To force Gnuplot to create an output file (eps or png) which > holds the whole picture! (currently, my eps is cutting the right boundary). > set term postscript landscape eps color I suggest you drop the 'landscape' out of that line. > set xtics 10 set mytics 5 set mxtics 5 set grid xtics ytics # mxtics mytics That line's broken. There should be several semicolons in there. |