help-octave
[Top][All Lists]
Advanced

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

direction field plot


From: mark dufour
Subject: direction field plot
Date: Tue, 3 Sep 2002 12:30:57 +0200
User-agent: KMail/1.4.6

hi!
 
first of all, it's great there's a free alternative to matlab and such. 
secondly, I'm a big idiot. how to make a direction field plot of a simple 
differential equation? I found the following recipe for matlab:

dx = 0.1;
[xp,yp] = meshgrid ( 0:dx:2, -1:dx:1 );
u = dx * ones ( size ( xp ) );
v = dx * stiff_ode ( xp, yp );
quiver ( xp, yp, u, v ) 

but it doesn't seem like quiver() is supported by octave.. I'm sorry, I just 
found out about Octave a few minutes ago, and I'm being way too impatient.


thanks for any help!!
mark dufour.



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