From octave-graphics-request at bevo dot che dot wisc dot edu Wed May 24 07:34:00 2000 Subject: Re: print subplot From: Tim Piessens To: zakaria cc: octave-graphics at bevo dot che dot wisc dot edu Date: Wed, 24 May 2000 14:32:06 +0200 (MET DST) On Wed, 24 May 2000, zakaria wrote: > Dear all, > I have succeded to plot graphics in octave GNUplot. Howeever, the > graphics I made in file PS. But subplot of not all of those graphics can't > be saved to print out. Only the last one can be saved. > > This is the command > > octave:1> zetaj (this file executed in Octave) > octave:2>gset term post > octave:3> > gnuplot>set term post > > line O: you can't change the terminal multiplot mode > You have to redo your drawing commands : I do it like this gset nomultiplot gset terminal postscript 10; gset multiplot gset nologscale xy title(sprintf('TR = %3.1e, TF = %3.1e',TR3,TF3)); subplot(3,2,1);data=[TIME1,INVTRANVNUIT3];gplot data title 'Ideal comparator'; title(sprintf('TR = %3.1e, TF = %3.1e',TR2,TF2)); subplot(3,2,3);data=[TIME1,INVTRANVNUIT2];gplot data title 'Ideal Invertor with d elay'; gset nomultiplot gset term X11 gset multiplot gset nologscale xy gset nologscale xy title(sprintf('TR = %3.1e, TF = %3.1e',TR3,TF3)); subplot(3,2,1);data=[TIME1,INVTRANVNUIT3];gplot data title 'Ideal comparator'; title(sprintf('TR = %3.1e, TF = %3.1e',TR2,TF2)); subplot(3,2,3);data=[TIME1,INVTRANVNUIT2];gplot data title 'Ideal Invertor with d elay'; > the problem is how to save the subplot simulataneously? > > Thanks for ur help > > Zakaria > >