From help-request at octave dot org Sun Feb 13 19:55:19 2005 Subject: Re: Saving Image data in eps format. From: Geordie McBain To: Mamo Cc: help-octave at bevo dot che dot wisc dot edu Date: Sun, 13 Feb 2005 20:58:16 -0500 If you've got Octave-Forge , 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 -------------------------------------------------------------