help-octave
[Top][All Lists]
Advanced

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

Re: "Movie" of plots


From: Claudio Belotti
Subject: Re: "Movie" of plots
Date: Tue, 14 Dec 2004 15:39:56 +0100
User-agent: Mozilla Thunderbird 0.8 (X11/20040926)

Robert A. Macy wrote:

Claudio,

Thank you for the reply.  This sounds like it could work
very well.
Uh, how do you make a .png?

I think that it's better if you reply to the list, anyway :

gset output "filename.png"
gset terminal png

plot(x,y)


if you use a for loop you can do something like

gset terminal png
for ii=1:end
        eval(sprintf('gset output %d.png',ii))
        plot
endfor


Claudio



-------------------------------------------------------------
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]