[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Printing Plots
From: |
Etienne Grossmann |
Subject: |
Re: Printing Plots |
Date: |
Sun, 26 Nov 2000 13:44:40 GMT |
Hello,
> I have searched the help docs, but I can't find anything on
> printing plots. I hope someone on this list can help.
Same as with gnuplot. For example :
octave:738> x = linspace (0,10,100); y = sin (x);
octave:739> plot (x, y);
octave:740> gset term postscript
octave:741> gset out myfing.ps
octave:742> gset out "myfig.ps"
octave:743> replot # Plot to file
octave:744> ls -l *.ps
-rw-r--r-- 1 etienne etienne 12320 Nov 26 12:45 myfig.ps
You may then print myfig.ps.
Hth,
Etienne
-------------------------------------------------------------
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
-------------------------------------------------------------
- Printing Plots, Jason Stegman, 2000/11/25
- Re: Printing Plots,
Etienne Grossmann <=