Gauss-Markov Processes

Things that relate to continuous-time Gauss-Markov processes and their discretization.

Processes

KalmanFilterToolbox.IWPType
IWP(wiener_process_dimension::Integer, num_derivatives::Integer)

Integrated Wiener process.

By itself it does not have much utility right now, but together with discretize it provides discrete transition matrices that are useful for defining discrete state-space models.

source
KalmanFilterToolbox.IOUPType
IOUP(wiener_process_dimension::Integer, num_derivatives::Integer, drift_speed::Real)

Integrated Ornstein-Uhlenbeck process.

source
KalmanFilterToolbox.MaternType
Matern(wiener_process_dimension::Integer, num_derivatives::Integer, lengthscale::Real)

Matern process. Typically, they are defined with a half-integer parameter $ν$. To get the corresponding process here, set num_derivatives = ν+1/2.

source

Utilities

KalmanFilterToolbox.preconditionerFunction
preconditioner(p::AbstractGaussMarkovProcess, dt::Real)

Computes a preconditioner, which is helpful for numerically stable implementation.

This corresponds to the preconditioner as described by [1], developed for integrated Wiener process priors (IWP), but it might also be useful for other priors.

[1] Krämer & Hennig, "Stable Implementation of Probabilistic ODE Solvers", 2020.

source
KalmanFilterToolbox.preconditioned_discretizeFunction
preconditioned_discretize(p::IWP)

Preconditioned discretization of the integrated Wiener process.

For the IWP, the preconditioned discretization is independend of the current step size and known in closed form. This is very helpful for numerically stable implementations and high efficiency.

source

SDE and tools

KalmanFilterToolbox.LTISDEType
LTISDE(drift::AbstractMatrix, dispersion::AbstractVecOrMat)

Linear time-invariant SDE

\[\begin{aligned} dx = F x dt + L dβ \end{aligned}\]

with drift F and dispersion L, and diffusion σ.

source
KalmanFilterToolbox.to_1d_sdeFunction
to_1d_sde(p::AbstractGaussMarkovProcess)

Build a LTISDE that corresponds to a single dimension of the given Gauss-Markov process.

Just working on a single dimension leads to more efficient code, so that the full matrices can be built at the very end (e.g. after computing the one-dimensional transition matrices via matrix fraction decomposition) with a Kronecker product.

source