Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
ode_discrete
ordinary differential equation solver, discrete time simulation
Syntax
y=ode("discrete",y0,k0,kvect,f)
Arguments
- y0
a real vector or matrix (initial conditions).
- t0
a real scalar (initial time).
- f
an external i.e. function or character string or list.
- k0
an integer (initial time).
- kvect
an integer vector.
Description
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 see ode help.
Examples
See also
- ode — ordinary differential equation solver
Report an issue | ||
<< ode | Differential calculus, Integration | ode_optional_output >> |