NAG Library Routine Document

g13ekf  (kalman_unscented_state)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g13ekf applies the Unscented Kalman Filter (UKF) to a nonlinear state space model, with additive noise.
g13ekf uses direct communication for evaluating the nonlinear functionals of the state space model.

2
Specification

Fortran Interface
Subroutine g13ekf ( mx, my, y, lx, ly, f, h, x, st, iuser, ruser, ifail)
Integer, Intent (In):: mx, my
Integer, Intent (Inout):: iuser(*), ifail
Real (Kind=nag_wp), Intent (In):: y(my), lx(mx,mx), ly(my,my)
Real (Kind=nag_wp), Intent (Inout):: x(mx), st(mx,mx), ruser(*)
External:: f, h
C Header Interface
#include nagmk26.h
void  g13ekf_ ( const Integer *mx, const Integer *my, const double y[], const double lx[], const double ly[],
void (NAG_CALL *f)( const Integer *mx, const Integer *n, const double xt[], double fxt[], Integer iuser[], double ruser[], Integer *info),
void (NAG_CALL *h)( const Integer *mx, const Integer *my, const Integer *n, const double yt[], double hyt[], Integer iuser[], double ruser[], Integer *info),
double x[], double st[], Integer iuser[], double ruser[], Integer *ifail)

3
Description

g13ekf applies the Unscented Kalman Filter (UKF), as described in Julier and Uhlmann (1997b) to a nonlinear state space model, with additive noise, which, at time t, can be described by:
xt+1 =Fxt+vt yt =Hxt+ut  
where xt represents the unobserved state vector of length mx and yt the observed measurement vector of length my. The process noise is denoted vt, which is assumed to have mean zero and covariance structure Σx, and the measurement noise by ut, which is assumed to have mean zero and covariance structure Σy.

3.1
Unscented Kalman Filter Algorithm

Given x^0, an initial estimate of the state and P0 and initial estimate of the state covariance matrix, the UKF can be described as follows:
(a) Generate a set of sigma points (see Section 3.2):
Xt= x ^ t-1     x ^ t-1 + γ Pt-1     x ^ t-1 - γ Pt-1 (1)
(b) Evaluate the known model function F:
Ft=FXt(2)
The function F is assumed to accept the mx×n matrix, Xt and return an mx×n matrix, Ft. The columns of both Xt and Ft correspond to different possible states. The notation Ft,i is used to denote the ith column of Ft, hence the result of applying F to the ith possible state.
(c) Time Update:
x^t_ = i=1 n Wim Ft,i (3)
Pt_ = i=1 n Wic Ft,i - x ^ t _ Ft,i - x ^ t _ T + Σx (4)
(d) Redraw another set of sigma points (see Section 3.2):
Yt = x ^ t _     x ^ t _ + γ Pt_     x ^ t _ - γ Pt_ (5)
(e) Evaluate the known model function H:
Ht=HYt(6)
The function H is assumed to accept the mx×n matrix, Yt and return an my×n matrix, Ht. The columns of both Yt and Ht correspond to different possible states. As above Ht,i is used to denote the ith column of Ht.
(f) Measurement Update:
y ^ t = i=1 n Wim Ht,i (7)
Pyyt = i=1 n Wic Ht,i - y ^ t Ht,i - y ^ t T + Σy (8)
P xyt = i=1 n Wic Ft,i - x ^ t _ Ht,i - y ^ t T (9)
Kt = P xyt Pyyt-1 (10)
x^t = x ^ t _ + Kt yt - y ^ t (11)
Pt = Pt_ - Kt Pyyt KtT (12)
Here Kt is the Kalman gain matrix, x^t is the estimated state vector at time t and Pt the corresponding covariance matrix. Rather than implementing the standard UKF as stated above g13ekf uses the square-root form described in the Haykin (2001).

3.2
Sigma Points

A nonlinear state space model involves propagating a vector of random variables through a nonlinear system and we are interested in what happens to the mean and covariance matrix of those variables. Rather than trying to directly propagate the mean and covariance matrix, the UKF uses a set of carefully chosen sample points, referred to as sigma points, and propagates these through the system of interest. An estimate of the propagated mean and covariance matrix is then obtained via the weighted sample mean and covariance matrix.
For a vector of m random variables, x, with mean μ and covariance matrix Σ, the sigma points are usually constructed as:
Xt = μ     μ + γ Σ     μ - γ Σ  
When calculating the weighted sample mean and covariance matrix two sets of weights are required, one used when calculating the weighted sample mean, denoted Wm and one used when calculated the weighted sample covariance matrix, denoted Wc. The weights and multiplier, γ, are constructed as follows:
λ =α2L+κ-L γ =L+λ Wim = λL+λ      i=1 12L+λ      i=2,3,,2L+1 Wic = λL+λ +1-α2+β i=1 12L+λ i=2,3,,2L+1  
where, usually L=m and α,β and κ are constants. The total number of sigma points, n, is given by 2L+1. The constant α is usually set to somewhere in the range 10-4α1 and for a Gaussian distribution, the optimal values of κ and β are 3-L and 2 respectively.
The constants, κ, α and β are given by κ=3-mx, α=1.0 and β=2. If more control is required over the construction of the sigma points then the reverse communication routine, g13ejf, can be used instead.

4
References

Haykin S (2001) Kalman Filtering and Neural Networks John Wiley and Sons
Julier S J (2002) The scaled unscented transformation Proceedings of the 2002 American Control Conference (Volume 6) 4555–4559
Julier S J and Uhlmann J K (1997a) A consistent, debiased method for converting between polar and Cartesian coordinate systems Proceedings of AeroSense97, International Society for Optics and Phonotonics 110–121
Julier S J and Uhlmann J K (1997b) A new extension of the Kalman Filter to nonlinear systems International Symposium for Aerospace/Defense, Sensing, Simulation and Controls (Volume 3) 26

5
Arguments

1:     mx – IntegerInput
On entry: mx, the number of state variables.
Constraint: mx1.
2:     my – IntegerInput
On entry: my, the number of observed variables.
Constraint: my1.
3:     ymy – Real (Kind=nag_wp) arrayInput
On entry: yt, the observed data at the current time point.
4:     lxmxmx – Real (Kind=nag_wp) arrayInput
On entry: Lx, such that LxLxT=Σx, i.e., the lower triangular part of a Cholesky decomposition of the process noise covariance structure. Only the lower triangular part of lx is referenced.
If Σx is time dependent, the value supplied should be for time t.
5:     lymymy – Real (Kind=nag_wp) arrayInput
On entry: Ly, such that LyLyT=Σy, i.e., the lower triangular part of a Cholesky decomposition of the observation noise covariance structure. Only the lower triangular part of ly is referenced.
If Σy is time dependent, the value supplied should be for time t.
6:     f – Subroutine, supplied by the user.External Procedure
The state function, F as described in (b).
The specification of f is:
Fortran Interface
Subroutine f ( mx, n, xt, fxt, iuser, ruser, info)
Integer, Intent (In):: mx, n
Integer, Intent (Inout):: iuser(*), info
Real (Kind=nag_wp), Intent (In):: xt(mx,n)
Real (Kind=nag_wp), Intent (Inout):: ruser(*)
Real (Kind=nag_wp), Intent (Out):: fxt(mx,n)
C Header Interface
#include nagmk26.h
void  f ( const Integer *mx, const Integer *n, const double xt[], double fxt[], Integer iuser[], double ruser[], Integer *info)
1:     mx – IntegerInput
On entry: mx, the number of state variables.
2:     n – IntegerInput
On entry: n, the number of sigma points.
3:     xtmxn – Real (Kind=nag_wp) arrayInput
On entry: Xt, the sigma points generated in (a). For the jth sigma point, the value for the ith parameter is held in xtij, for i=1,2,,mx and j=1,2,,n.
4:     fxtmxn – Real (Kind=nag_wp) arrayOutput
On exit: F Xt .
For the jth sigma point the value for the ith parameter should be held in fxtij, for i=1,2,,mx and j=1,2,,n.
5:     iuser* – Integer arrayUser Workspace
6:     ruser* – Real (Kind=nag_wp) arrayUser Workspace
f is called with the arguments iuser and ruser as supplied to g13ekf. You should use the arrays iuser and ruser to supply information to f.
7:     info – IntegerInput/Output
On entry: info=0.
On exit: set info to a nonzero value if you wish g13ekf to terminate with ifail=61.
f must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which g13ekf is called. Arguments denoted as Input must not be changed by this procedure.
Note: f should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by g13ekf. If your code inadvertently does return any NaNs or infinities, g13ekf is likely to produce unexpected results.
7:     h – Subroutine, supplied by the user.External Procedure
The measurement function, H as described in (e).
The specification of h is:
Fortran Interface
Subroutine h ( mx, my, n, yt, hyt, iuser, ruser, info)
Integer, Intent (In):: mx, my, n
Integer, Intent (Inout):: iuser(*), info
Real (Kind=nag_wp), Intent (In):: yt(mx,n)
Real (Kind=nag_wp), Intent (Inout):: ruser(*)
Real (Kind=nag_wp), Intent (Out):: hyt(my,n)
C Header Interface
#include nagmk26.h
void  h ( const Integer *mx, const Integer *my, const Integer *n, const double yt[], double hyt[], Integer iuser[], double ruser[], Integer *info)
1:     mx – IntegerInput
On entry: mx, the number of state variables.
2:     my – IntegerInput
On entry: my, the number of observed variables.
3:     n – IntegerInput
On entry: n, the number of sigma points.
4:     ytmxn – Real (Kind=nag_wp) arrayInput
On entry: Yt, the sigma points generated in (d). For the jth sigma point, the value for the ith parameter is held in ytij, for i=1,2,,mx and j=1,2,,n, where mx is the number of state variables and n is the number of sigma points.
5:     hytmyn – Real (Kind=nag_wp) arrayOutput
On exit: H Yt .
For the jth sigma point the value for the ith parameter should be held in hytij, for i=1,2,,my and j=1,2,,n.
6:     iuser* – Integer arrayUser Workspace
7:     ruser* – Real (Kind=nag_wp) arrayUser Workspace
h is called with the arguments iuser and ruser as supplied to g13ekf. You should use the arrays iuser and ruser to supply information to h.
8:     info – IntegerInput/Output
On entry: info=0.
On exit: set info to a nonzero value if you wish g13ekf to terminate with ifail=71.
h must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which g13ekf is called. Arguments denoted as Input must not be changed by this procedure.
Note: h should not return floating-point NaN (Not a Number) or infinity values, since these are not handled by g13ekf. If your code inadvertently does return any NaNs or infinities, g13ekf is likely to produce unexpected results.
8:     xmx – Real (Kind=nag_wp) arrayInput/Output
On entry: x^t-1 the state vector for the previous time point.
On exit: x^t the updated state vector.
9:     stmxmx – Real (Kind=nag_wp) arrayInput/Output
On entry: St, such that St-1St-1T=Pt-1, i.e., the lower triangular part of a Cholesky decomposition of the state covariance matrix at the previous time point. Only the lower triangular part of st is referenced.
On exit: St, the lower triangular part of a Cholesky factorization of the updated state covariance matrix.
10:   iuser* – Integer arrayUser Workspace
11:   ruser* – Real (Kind=nag_wp) arrayUser Workspace
iuser and ruser are not used by g13ekf, but are passed directly to f and h and may be used to pass information to these routines.
12:   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=11
On entry, mx=value.
Constraint: mx1.
ifail=21
On entry, my=value.
Constraint: my1.
ifail=61
User requested termination in f.
ifail=71
User requested termination in h.
ifail=301
A weight was negative and it was not possible to downdate the Cholesky factorization.
ifail=302
Unable to calculate the Kalman gain matrix.
ifail=303
Unable to calculate the Cholesky factorization of the updated state covariance matrix.
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

Not applicable.

8
Parallelism and Performance

g13ekf 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

None.

10
Example

This example implements the following nonlinear state space model, with the state vector x and state update function F given by:
mx =3 xt+1 = ξt+1 ηt+1 θt+1 T =Fxt+vt = xt+ cosθt -sinθt 0 sinθt cosθt 0 001 0.5r 0.5r 00 r/d -r/d ϕRt ϕLt +vt  
where r and d are known constants and ϕRt and ϕLt are time-dependent knowns. The measurement vector y and measurement function H is given by:
my =2 yt =δt,αtT =Hxt+ut = Δ-ξtcosA-ηtsinA θt-A +ut  
where A and Δ are known constants. The initial values, x0 and P0, are given by
x0 = 0 0 0 , P0 = 0.100 00.10 000.1  
and the Cholesky factorizations of the error covariance matrices, Lx and Lx by
Lx = 0.100 00.10 000.1 , Ly = 0.010 00.01  

10.1
Program Text

Program Text (g13ekfe.f90)

10.2
Program Data

Program Data (g13ekfe.d)

10.3
Program Results

Program Results (g13ekfe.r)

The example described above can be thought of relating to the movement of a hypothetical robot. The unknown state, x, is the position of the robot (with respect to a reference frame) and facing, with ξ,η giving the x and y coordinates and θ the angle (with respect to the x-axis) that the robot is facing. The robot has two drive wheels, of radius r on an axle of length d. During time period t the right wheel is believed to rotate at a velocity of ϕRt and the left at a velocity of ϕLt. In this example, these velocities are fixed with ϕRt=0.4 and ϕLt=0.1. The state update function, F, calculates where the robot should be at each time point, given its previous position. However, in reality, there is some random fluctuation in the velocity of the wheels, for example, due to slippage. Therefore the actual position of the robot and the position given by equation F will differ.
In the area that the robot is moving there is a single wall. The position of the wall is known and defined by its distance, Δ, from the origin and its angle, A, from the x-axis. The robot has a sensor that is able to measure y, with δ being the distance to the wall and α the angle to the wall. The measurement function H gives the expected distance and angle to the wall if the robot's position is given by xt. Therefore the state space model allows the robot to incorporate the sensor information to update the estimate of its position.
GnuplotProduced by GNUPLOT 4.6 patchlevel 3 0 1 2 3 4 5 6 7 0 1 2 3 4 5 6 7 Example Program Illustration of Position and Orientation of a Hypothetical Robot Wall Position gnuplot_plot_1 Initial gnuplot_plot_2 Actual gnuplot_plot_3 Updated gnuplot_plot_4 gnuplot_plot_5 gnuplot_plot_6 gnuplot_plot_7
© The Numerical Algorithms Group Ltd, Oxford, UK. 2017