|
From: Thomas S. <t.s...@fz...> - 2010-02-02 09:27:21
|
'save' is working as intended, it writes the last plot command to file: http://www.gnuplot.info/docs/node153.html in multiplot mode all plots are still individual plots which - in contrast to normal plotting mode where each plot gets a fresh canvas - are plotted to the same canvas. to save all plot commands to file you may - 'save' after each 'plot' - 'print GPVAL_LAST_PLOT' after each 'plot' the latter you may do using a small script which is 'call'ed instead of the 'plot' command. adhemar wrote: > > Hello everybody, > > I am unable to save all the "plot" commands that I've given inside the > multiplot mode, but it appears to only save the last plot command that > I've issued. > > For example: > > set multiplot layout 2,2 > plot x > plot x**2 > plot x**3 > plot x**4 > save "example.gp" > unset multiplot > > produces a file containing a lot of settings and then only the last > command, i.e. plot x**4. > Is this working as intended? Is there a way to save all the plot commands > I have given in multiplot mode? > > Thank you. > > -- View this message in context: http://old.nabble.com/save-and-multiplot-tp27413719p27417547.html Sent from the Gnuplot - Dev mailing list archive at Nabble.com. |