help-octave
[Top][All Lists]
Advanced

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

Re: Is there a convenient way to do parametric plots in octave?


From: Paul Kienzle
Subject: Re: Is there a convenient way to do parametric plots in octave?
Date: Sun, 14 Mar 2004 09:19:34 -0500

Do you want two lines, x vs t and y vs t?

        plot(t,x,';x;',t,y,';y;')

Do you want one line, x vs y?

        plot(x,y)

Do you want points in 3-space?

        plot3(x,y,t)

plot3 is available in octave-forge (http://octave.sf.net).

Paul Kienzle
address@hidden

On Mar 13, 2004, at 12:18 PM, Morris Pearl wrote:


I have an algorithm that produces a pair (x,y) for each value of t in a
specific range (0 to 5), and I was looking for a simple way to have octave produce a plot of these (x,y) pairs.

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]