help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Saving Image data in eps format.


From: Geordie McBain
Subject: Re: Saving Image data in eps format.
Date: Sun, 13 Feb 2005 20:58:16 -0500
User-agent: Mutt/1.5.6+20040907i

If you've got Octave-Forge <http://octave.sf.net>, you can use its
print function to get EPS output.

If not, you can use the lower-level gnuplot functions from Octave to
set the output type ("terminal") and output file name ("output"): e.g.

octave> x=linspace (-pi, pi, 100); y=sin(x);
octave> gset terminal postscript eps
octave> gset output "sine.eps"
octave> plot (x, y)

Geordie McBain
www.aeromech.usyd.edu.au/~mcbain


On Sun, Feb 13, 2005 at 06:52:41PM -0600, Mamo wrote:
> 
> I recently started using Octave. I wanted to save an Image data
> (Matrix) in eps format "filename.eps". But I couldn't find any octave 
> command that lets me do this. I found "saveimage" but it saves as .ps 
> not .eps. Can some one help me with this issue please?
> 
> Thank you. 
> 
> 
> 
> -------------------------------------------------------------
> 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
-------------------------------------------------------------



reply via email to

[Prev in Thread] Current Thread [Next in Thread]