help-octave
[Top][All Lists]
Advanced

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

Re: Help printing parametric plot


From: Przemek Klosowski
Subject: Re: Help printing parametric plot
Date: Fri, 9 May 2003 18:35:10 -0400 (EDT)

The problem pops up because you are bypassing octave's plotting with
raw calls to gnuplot---in your example octave doesn't even do
anything, so you might just use gnuplot directly. Natively in octave,
parametric plots should probably be done via regular octave
facilities:

     t=0:.1:4*pi;     x=t-sin(t);  y=1-cos(t);  plot(x,y)

to let printeps and all other octave plot facilities work.
     
Solution B might be to change the printeps script to do graw("replot")
instead.



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