|
From: <br...@ph...> - 2006-06-27 18:39:04
|
Stefan Urbanek wrote: > > set palette > set pm3d map > set size square > set terminal png > splot "plotXX.data" > > Where XX is sequence number. Output are png files. > > I would like to have the images of same size and to have the plots (map area) > same size as well, with exact position inside the image? Then you shouldn't have used 'set size square'. That makes the shape of the graph area dependent on the ratio of axis ranges. You may want to use 'set lmargin' & friends instead, which fix the relation between the "paper" size and that of the graph. |