From help-octave-request at bevo dot che dot wisc dot edu Mon Dec 17 03:27:28 2001 Subject: Re: gplot question From: Dominik Baenninger To: Alejandro Bertelsen cc: help-octave at bevo dot che dot wisc dot edu Date: Mon, 17 Dec 2001 10:27:33 +0100 (CET) Hi You have to set the term and give the path for output, e.g. I creat eps-files (coloured, with font Courier of size 24) by using the following commands: gset term postscript eps colour "Courier" 24 gset output "/home/baenni/test.eps" gset yrange[0:1]; gset xlabel "g" gset ylabel "r,t,a" gplot data1 using 1:2 title "reflectance" with lines, \ data2 using 1:2 title "transmittance" with lines,\ data3 using 1:2 title "absorbance" with lines where data1 to data3 are at least n x 2 matrices. ======================================================= Dominik Baenninger Grabenstrasse 3 CH-8952 Schlieren Phone: ++ 41-1-633'63'65 Fax : ++ 41-1-633'11'23 web : http://www.ito.umnw.ethz.ch/~bdominik/index.php ======================================================= On Mon, 17 Dec 2001, Alejandro Bertelsen wrote: > > Hi: I'm a new octave user, somehow i don't manage to save the plots the gplot > commmand create. Could you tell me how to create a file with a useful format. > thanks > Alejandro Bertelsen > > > > > ------------------------------------------------------------- > Octave is freely available under the terms of the GNU GPL. > > Octave's home on the web: http://www.octave.org > How to fund new projects: http://www.octave.org/funding.html > Subscription information: http://www.octave.org/archive.html > ------------------------------------------------------------- > ------------------------------------------------------------- Octave is freely available under the terms of the GNU GPL. Octave's home on the web: http://www.octave.org How to fund new projects: http://www.octave.org/funding.html Subscription information: http://www.octave.org/archive.html -------------------------------------------------------------