NAG Library Routine Document

g13eaf (multi_kalman_sqrt_var)

1
Purpose

g13eaf performs a combined measurement and time update of one iteration of the time-varying Kalman filter using a square root covariance filter.

2
Specification

Fortran Interface
Subroutine g13eaf ( n, m, l, a, lds, b, stq, q, ldq, c, ldm, r, s, k, h, tol, iwk, wk, ifail)
Integer, Intent (In):: n, m, l, lds, ldq, ldm
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: iwk(m)
Real (Kind=nag_wp), Intent (In):: a(lds,n), b(lds,l), q(ldq,*), c(ldm,n), r(ldm,m), tol
Real (Kind=nag_wp), Intent (Inout):: s(lds,n), k(lds,m), h(ldm,m)
Real (Kind=nag_wp), Intent (Out):: wk((n+m)*(n+m+l))
Logical, Intent (In):: stq
C Header Interface
#include <nagmk26.h>
void  g13eaf_ (const Integer *n, const Integer *m, const Integer *l, const double a[], const Integer *lds, const double b[], const logical *stq, const double q[], const Integer *ldq, const double c[], const Integer *ldm, const double r[], double s[], double k[], double h[], const double *tol, Integer iwk[], double wk[], Integer *ifail)

3
Description

The Kalman filter arises from the state space model given by:
Xi+1=AiXi+BiWi, VarWi=Qi Yi=CiXi+Vi, VarVi=Ri  
where Xi is the state vector of length n at time i, Yi is the observation vector of length m at time i, and Wi of length l and Vi of length m are the independent state noise and measurement noise respectively.
The estimate of Xi given observations Y1 to Yi-1 is denoted by X^ii-1 with state covariance matrix VarX^ii-1=Pii-1=SiSiT, while the estimate of Xi given observations Y1 to Yi is denoted by X^ii with covariance matrix VarX^ii=Pii. The update of the estimate, X^ii-1, from time i to time i+1, is computed in two stages. First, the measurement-update is given by
X^ii=X^ii-1+KiYi-CiX^ii-1 (1)
and
Pii=I-KiCiPii-1 (2)
where Ki=Pii-1 CiT CiPii-1 CiT +Ri -1 is the Kalman gain matrix. The second stage is the time-update for X which is given by
X^i+1i=AiX^ii+DiUi (3)
and
Pi+1i=AiPii AiT +BiQi BiT (4)
where DiUi represents any deterministic control used.
The square root covariance filter algorithm provides a stable method for computing the Kalman gain matrix and the state covariance matrix. The algorithm can be summarised as
Ri1/2 CiSi 0 0 AiSi BiQi1/2 U= Hi1/2 0 0 Gi Si+1 0 (5)
where U is an orthogonal transformation triangularizing the left-hand pre-array to produce the right-hand post-array. The relationship between the Kalman gain matrix, Ki, and Gi is given by
AiKi=Gi Hi1/2 -1.  
g13eaf requires the input of the lower triangular Cholesky factors of the noise covariance matrices Ri1/2 and, optionally, Qi1/2 and the lower triangular Cholesky factor of the current state covariance matrix, Si, and returns the product of the matrices Ai and Ki, AiKi, the Cholesky factor of the updated state covariance matrix Si+1 and the matrix Hi1/2 used in the computation of the likelihood for the model.

4
References

Vanbegin M, van Dooren P and Verhaegen M H G (1989) Algorithm 675: FORTRAN subroutines for computing the square root covariance filter and square root information filter in dense or Hessenberg forms ACM Trans. Math. Software 15 243–256
Verhaegen M H G and van Dooren P (1986) Numerical aspects of different Kalman filter implementations IEEE Trans. Auto. Contr. AC-31 907–917

5
Arguments

1:     n – IntegerInput
On entry: n, the size of the state vector.
Constraint: n1.
2:     m – IntegerInput
On entry: m, the size of the observation vector.
Constraint: m1.
3:     l – IntegerInput
On entry: l, the dimension of the state noise.
Constraint: l1.
4:     aldsn – Real (Kind=nag_wp) arrayInput
On entry: the state transition matrix, Ai.
5:     lds – IntegerInput
On entry: the first dimension of the arrays a, b, s and k as declared in the (sub)program from which g13eaf is called.
Constraint: ldsn.
6:     bldsl – Real (Kind=nag_wp) arrayInput
On entry: the noise coefficient matrix Bi.
7:     stq – LogicalInput
On entry: if stq=.TRUE., the state noise covariance matrix Qi is assumed to be the identity matrix. Otherwise the lower triangular Cholesky factor, Qi1/2, must be provided in q.
8:     qldq* – Real (Kind=nag_wp) arrayInput
Note: the second dimension of the array q must be at least l if stq=.FALSE..
On entry: if stq=.FALSE., q must contain the lower triangular Cholesky factor of the state noise covariance matrix, Qi1/2. Otherwise q is not referenced.
9:     ldq – IntegerInput
On entry: the first dimension of the array q as declared in the (sub)program from which g13eaf is called.
Constraints:
  • if stq=.FALSE., ldql;
  • otherwise ldq1.
10:   cldmn – Real (Kind=nag_wp) arrayInput
On entry: the measurement coefficient matrix, Ci.
11:   ldm – IntegerInput
On entry: the first dimension of the arrays c, r and h as declared in the (sub)program from which g13eaf is called.
Constraint: ldmm.
12:   rldmm – Real (Kind=nag_wp) arrayInput
On entry: the lower triangular Cholesky factor of the measurement noise covariance matrix Ri1/2.
13:   sldsn – Real (Kind=nag_wp) arrayInput/Output
On entry: the lower triangular Cholesky factor of the state covariance matrix, Si.
On exit: the lower triangular Cholesky factor of the state covariance matrix, Si+1.
14:   kldsm – Real (Kind=nag_wp) arrayOutput
On exit: the Kalman gain matrix, Ki, premultiplied by the state transition matrix, Ai, AiKi.
15:   hldmm – Real (Kind=nag_wp) arrayOutput
On exit: the lower triangular matrix Hi1/2.
16:   tol – Real (Kind=nag_wp)Input
On entry: the tolerance used to test for the singularity of Hi1/2. If 0.0tol<m2×machine precision, then m2×machine precision is used instead. The inverse of the condition number of H1/2 is estimated by a call to f07tgf (dtrcon). If this estimate is less than tol then H1/2 is assumed to be singular.
Suggested value: tol=0.0.
Constraint: tol0.0.
17:   iwkm – Integer arrayWorkspace
18:   wkn+m×n+m+l – Real (Kind=nag_wp) arrayWorkspace
19:   ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. If you are unfamiliar with this argument you should refer to Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, l=value.
Constraint: l1.
On entry, ldm=value and m=value.
Constraint: ldmm.
On entry, ldq=value.
Constraint: ldq1.
On entry, ldq=value and l=value.
Constraint: ldql.
On entry, lds=value and n=value.
Constraint: ldsn.
On entry, m=value.
Constraint: m1.
On entry, n=value.
Constraint: n1.
On entry, tol=value.
Constraint: tol0.0.
ifail=2
The matrix Hi1/2 is singular.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.9 in How to Use the NAG Library and its Documentation for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.8 in How to Use the NAG Library and its Documentation for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The use of the square root algorithm improves the stability of the computations as compared with the direct coding of the Kalman filter. The accuracy will depend on the model.

8
Parallelism and Performance

g13eaf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g13eaf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9
Further Comments

For models with time-invariant A,B and C, g13ebf can be used.
The estimate of the state vector X^i+1i can be computed from X^ii-1 by
X^i+1i=AiX^ii-1+AKiri  
where
ri=Yi-CiX^ii- 1  
are the independent one step prediction residuals. The required matrix-vector multiplications can be performed by f06paf (dgemv).
If Wi and Vi are independent multivariate Normal variates then the log-likelihood for observations i=1,2,,t is given by
lθ = κ - 12 i=1 t l n detHi - 12 i=1 t Yi - Ci X ii-1 T H i -1 Yi - Ci X ii-1  
where κ is a constant.
The Cholesky factors of the covariance matrices can be computed using f07fdf (dpotrf).
Note that the model
Xi+1=AiXi+Wi, VarWi=Qi Yi=CiXi+Vi, VarVi=Ri  
can be specified either with b set to the identity matrix and stq=.FALSE. and the matrix Q1/2 input in q or with stq=.TRUE. and b set to Q1/2.
The algorithm requires 76n3+n2 52m+l+n12l2+m2 operations and is backward stable (see Verhaegen and van Dooren (1986)).

10
Example

This example first inputs the number of updates to be computed and the problem sizes. The initial state vector and state covariance matrix are input followed by the model matrices Ai,Bi,Ci,Ri and optionally Qi. The Cholesky factors of the covariance matrices can be computed if required. The model matrices can be input at each update or only once at the first step. At each update the observed values are input and the residuals are computed and printed and the estimate of the state vector, X^ii-1, and the deviance are updated. The deviance is -2×log-likelihood ignoring the constant. After the final update the state covariance matrix is computed from s and printed along with final estimate of the state vector and the value of the deviance.
The data is for a two-dimensional time series to which a VARMA1,1 has been fitted. For the specification of a VARMA model as a state space model see the G13 Chapter Introduction. The initial value of P, P0, is the solution to
P0=A1P0 A1T +B1Q1 B1T .  
For convenience, the mean of each series is input before the first update and subtracted from the observations before the measurement update is computed.

10.1
Program Text

Program Text (g13eafe.f90)

10.2
Program Data

Program Data (g13eafe.d)

10.3
Program Results

Program Results (g13eafe.r)