init.state-pomp {pomp}R Documentation

Return a matrix of initial conditions given a vector of parameters and an initial time.

Description

The method init.state returns a vector of initial conditions for the state process when given a vector of parameters params and an initial time t0. This function is part of the low-level interface to pomp objects. This help page does not give instructions on the implementation of models: see pomp for instructions.

Usage

init.state(object, params, t0, ...)
## S4 method for signature 'pomp':
init.state(object, params, t0, ...)

Arguments

object an object of class pomp.
params a named vector of parameters.
t0 the initial time at which initial states are requested.
... at present, these are ignored.

Value

Returns a matrix of initial states (with rownames).

Author(s)

Aaron A. King kingaa at umich dot edu

See Also

pomp-class

Examples

data(ou2)
coef(ou2)
init.state(ou2)

data(euler.sir)
coef(euler.sir)
init.state(euler.sir)

[Package pomp version 0.24-7 Index]