[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Plotting query
From: |
Laurent Hoeltgen |
Subject: |
Re: Plotting query |
Date: |
Wed, 19 Sep 2012 08:58:19 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:15.0) Gecko/20120827 Thunderbird/15.0 |
On 19/09/12 08:22, Lester Anderson wrote:
Hello,
I am new to using Octave (on Windows), v3.6.2. I have used it to run a
Matlab file directly, without conversion of functions etc. and it
generates the figure windows and outputs the data files too, all as
defined in the comments in the file. However, there is no way to save
the figure output images (come up as separate windows) to a file e.g.
image or eps/ps format.
Any ideas as to how this can be achieved?
I have attached the original Matlab .m file for reference.
Cheers
Lester
_______________________________________________
Help-octave mailing list
address@hidden
https://mailman.cae.wisc.edu/listinfo/help-octave
Hi,
from the manual:
The `print' command allows you to save plots in a variety of formats.
For example,
print -deps foo.eps
writes the current figure to an encapsulated PostScript file called
`foo.eps'.
[...]
For more information simply type doc print into the octave terminal.
These commands also work in Matlab and provide a nice way to automate
the production of images. No fancy GUI needed here. ;-)
Regards,
Laurent