fchamp
direction field of a 2D first order ODE
Syntax
fchamp(f, t, xr, yr, [arfact, rect, strf]) fchamp(f, t, xr, yr, <opt_args>) h = fchamp(...)
Arguments
- f
an external (function or character string) or a list which describes the ODE.
- -
It can be a function name
f
, wheref
is supposed to be a function of typey=f(t, xy, [p1, ..., pn])
.f
returns a column vector of size 2,y
, which gives the value of the direction fieldf
at pointxy=[x,y]
and at timet
.- -
It can also be an object of type list,
list(f,P1, ..., Pn)
wheref
is a function of typey=f(t, xy, p1, ..., pn)
andPi
gives the value of the parameterpi
.
- t
the selected time.
- xr, yr
two row vectors of size
n1
andn2
which define the grid on which the direction field is computed.- <opt_args>
This represents a sequence of statements
key1=value1, key2=value2
,... wherekey1
,key2
,... can be one of the following:arfact
,rect
,strf
(see below).- arfact, rect, strf
Optional arguments, see
champ
.- h
This optional output contains a handle to a Champ entity. Use
h
to modify its properties For a list of properties, see champ_properties.
Description
fchamp
is used to draw the direction field of a
2D first order ODE defined by the external function
f
.
Note that if the ODE is autonomous, argument
t is useless, but it must be given. |
Enter the command fchamp()
to see a demo.
Examples
deff("[xdot] = derpol(t,x)",.. ["xd1 = x(2)";.. "xd2 = -x(1) + (1 - x(1)**2)*x(2)";.. "xdot = [ xd1 ; xd2 ]"]) xf= -1:0.1:1; yf= -1:0.1:1; fchamp(derpol,0,xf,yf)
See also
- champ — plots as arrows a field of 2D vectors
- champ_properties — description of the 2D vector field entity properties
- xarrows — draw a set of arrows in 2D or in 3D.
- Arrowed polyline — description of the Polyline entity properties
History
Version | Description |
2025.0.0 | Function returns the created handle(s). |
Report an issue | ||
<< errbar | 2d_plot | fec >> |