IntegratedWienerProcesses

Documentation for IntegratedWienerProcesses.

IntegratedWienerProcesses.ReverseTaylorType
ReverseTaylor

Type for representing state-space realizations in terms of Taylor coefficients in reverse order. That is the state-vector is of the form:

x = [D^n y, D^(n-1)y, ..., Dy, y]
source
IntegratedWienerProcesses.ssparamsMethod
ssparams(model::IWP{T}, method::AbstractRealizationMethod) where {T}

Computes the state-space matrices A, B, C for model model using realization method method.

source
IntegratedWienerProcesses.state2diff_matrixMethod
state2diff_matrix(model::IWP{T}, m::Integer, method::AbstractRealizationMethod) where {T}

Computes the matrix Em such that Dy = Em * x, where x is the state vector associated with realization method method.

source
IntegratedWienerProcesses.transition_covMethod
transition_cov(model::IWP{T}, dt::T, method::AbstractRealizationMethod) where {T}

Computes the transition covariance of the model model, with step-size dt, using realization method method.

source
IntegratedWienerProcesses.transition_cov_cholfMethod
transition_cov_cholf(model::IWP{T}, dt::T, method::AbstractRealizationMethod) where {T}

Computes a left cholesky factor of the transition covariance of the model model, with step-size dt, using realization method method.

source