|
From: Tim T. <tim...@gm...> - 2007-10-08 13:19:00
|
Hi, I was forced to take over some plotting software from a colleague, and am under some deadline constraints. I've tried googling my problem, but I probably don't know the right terms to use. The problem: the software we use produces a collection of pm3d/splot surfaces. Only the bottom left splot in the multiplot has any information about axes and color scale associated with it. SInce I know that at least the vertical range of the data may vary, I'd like to have at a minimum the vertical range annotated with range info. Sample script: set pm3d map set terminal gif set output "testPlot.gif" set size 2,2 set origin 0,0 set multiplot set size 1,1 set origin 1,0 splot sin(x*y/10) set size 1,1 set origin 0,1 splot cos(x*y/10) set size 1,1 set origin 0,0 splot sin(x*y/20) set size 1,1 set origin 1,1 splot cos(x*y/20) unset multiplot What am I doing wrong here ? TimT. |