NAG CL Interface
g13ebc (multi_kalman_sqrt_invar)
1
Purpose
g13ebc performs a combined measurement and time update of one iteration of the time-invariant Kalman filter. The method employed for this update is the square root covariance filter with the system matrices transformed into condensed observer Hessenberg form.
2
Specification
void |
g13ebc (Integer n,
Integer m,
Integer p,
double s[],
Integer tds,
const double a[],
Integer tda,
const double b[],
Integer tdb,
const double q[],
Integer tdq,
const double c[],
Integer tdc,
const double r[],
Integer tdr,
double k[],
Integer tdk,
double h[],
Integer tdh,
double tol,
NagError *fail) |
|
The function may be called by the names: g13ebc, nag_tsa_multi_kalman_sqrt_invar or nag_kalman_sqrt_filt_cov_invar.
3
Description
For the state space system defined by
the estimate of
given observations
to
is denoted by
, with
(where
,
and
are time invariant). The function performs one recursion of the square root covariance filter algorithm, summarised as follows:
where
is an orthogonal transformation triangularizing the pre-array, and the matrix pair
is in lower observer Hessenberg form. The triangularization is carried out via Householder transformations exploiting the zero pattern of the pre-array. An example of the pre-array is given below (where
and
):
The measurement-update for the estimated state vector
is
whilst the time-update for
is
where
represents any deterministic control used. The relationship between the Kalman gain matrix
and
is
The function returns the product of the matrices
and
, represented as
, and the state covariance matrix
factorized as
(see the Introduction to
Chapter G13 for more information concerning the covariance filter).
4
References
Anderson B D O and Moore J B (1979) Optimal Filtering Prentice–Hall
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
van Dooren P and Verhaegen M H G (1988) Condensed forms for efficient time-invariant Kalman filtering SIAM J. Sci. Stat. Comput. 9 516–530
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:
– Integer
Input
-
On entry: the actual state dimension, , i.e., the order of the matrices and .
Constraint:
.
-
2:
– Integer
Input
-
On entry: the actual input dimension, , i.e., the order of the matrix .
Constraint:
.
-
3:
– Integer
Input
-
On entry: the actual output dimension, , i.e., the order of the matrix .
Constraint:
.
-
4:
– double
Input/Output
-
Note: the th element of the matrix is stored in .
On entry: the leading by lower triangular part of this array must contain , the left Cholesky factor of the state covariance matrix .
On exit: the leading by lower triangular part of this array contains , the left Cholesky factor of the state covariance matrix .
-
5:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
s.
Constraint:
.
-
6:
– const double
Input
-
Note: the th element of the matrix is stored in .
On entry: the leading
by
part of this array must contain the lower observer Hessenberg matrix
. Where
is the state transition matrix of the discrete system and
is the unitary transformation generated by the function
g13ewc.
-
7:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
a.
Constraint:
.
-
8:
– const double
Input
-
Note: the th element of the matrix is stored in .
On entry: if
q is not
NULL then the leading
by
part of this array must contain the matrix
, otherwise (if
q is
NULL then the leading
by
part of the array must contain the matrix
.
is the input weight matrix,
is the noise covariance matrix and
is the same unitary transformation used for defining array arguments
a and
c.
-
9:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
b.
Constraint:
.
-
10:
– const double
Input
-
Note: the th element of the matrix is stored in .
On entry: if the noise covariance matrix is to be supplied separately from the input weight matrix then the leading
by
lower triangular part of this array must contain
, the left Cholesky factor process noise covariance matrix. If the noise covariance matrix is to be input with the weight matrix as
then the array
q must be set to
NULL.
-
11:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
q.
Constraint:
if
q is defined.
-
12:
– const double
Input
-
Note: the th element of the matrix is stored in .
On entry: the leading
by
part of this array must contain the lower observer Hessenberg matrix
. Where
is the output weight matrix of the discrete system and
is the unitary transformation matrix generated by the function
g13ewc.
-
13:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
c.
Constraint:
.
-
14:
– const double
Input
-
Note: the th element of the matrix is stored in .
On entry: the leading by lower triangular part of this array must contain , the left Cholesky factor of the measurement noise covariance matrix.
-
15:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
r.
Constraint:
.
-
16:
– double
Output
-
Note: the th element of the matrix is stored in .
On exit: if
k is not
NULL then the leading
by
part of
k contains
, the product of the Kalman filter gain matrix
with the state transition matrix
. If
is not required then
k must be set to
NULL.
-
17:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
k.
Constraint:
if
k is defined.
-
18:
– double
Output
-
Note: the th element of the matrix is stored in .
On exit: if
k is not
NULL then the leading
by
lower triangular part of this array contains
. If
k is
NULL then
h is not referenced and may be set to
NULL.
-
19:
– Integer
Input
-
On entry: the stride separating matrix column elements in the array
h.
Constraint:
if
k and
h are defined.
-
20:
– double
Input
-
On entry: if both
k and
h are not
NULL then
tol is used to test for near singularity of the matrix
. If you set
tol to be less than
then the tolerance is taken as
, where
is the
machine precision. Otherwise,
tol need not be set by you.
-
21:
– NagError *
Input/Output
-
The NAG error argument (see
Section 7 in the Introduction to the NAG Library CL Interface).
6
Error Indicators and Warnings
- NE_2_INT_ARG_LT
-
On entry, while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy . On entry while . These arguments must satisfy .
- NE_ALLOC_FAIL
-
Dynamic memory allocation failed.
- NE_INT_ARG_LT
-
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
- NE_MAT_SINGULAR
-
The matrix sqrt(H) is singular.
- NE_NULL_ARRAY
-
Array
h has null address.
7
Accuracy
The use of the square root algorithm improves the stability of the computations.
8
Parallelism and Performance
g13ebc 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 function. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
The algorithm requires operations and is backward stable (see Verhaegen et al).
10
Example
For this function two examples are presented. There is a single example program for g13ebc, with a main program and the code to solve the two example problems is given in the functions ex1 and ex2.
Example 1 (ex1)
To apply three iterations of the Kalman filter (in square root covariance form) to the time-invariant system supplied in lower observer Hessenberg form.
Example 2 (ex2)
To apply three iterations of the Kalman filter (in square root covariance form) to the general time-invariant system
. The use of the time-varying Kalman function
g13eac is compared with that of the time-invariant function
g13ebc. The same original data is used by both functions but additional transformations are required before it can be supplied to
g13ebc. It can be seen that (after the appropriate back-transformations on the output of
g13ebc) the results of both
g13eac and
g13ebc are the same.
10.1
Program Text
10.2
Program Data
10.3
Program Results