ode_discrete — ordinary differential equation solver, discrete time simulation
y=ode("discrete",y0,k0,kvect,f)
real vector or matrix (initial conditions).
real scalar (initial time).
external i.e. function or character string or list.
integer (initial time).
integer vector.
With this syntax (first argument equal to
"discrete"
) ode
computes recursively
y(k+1)=f(k,y(k))
from an initial state
y(k0)
and returns y(k)
for
k
in kvect
.
kvect(1)
must be greater than or equal to
k0
.
Other arguments and other options are the same as for
ode
, see the ode help.