GaFT Toolbox

Example of Typical Estimation Experiment Setup

The following example will present the way the estimation experiment is specified by means of the GaFT toolbox. The example will describe a problem of estimating the state and parameter of one dimensional linear Gaussian system with one unknown parameter. It is a nonlinear estimation problem since the system is from estimation point of view bilinear. This stem from the fact that for the purpose of the estimation the unknown parameter augments the original state of the system.

Experiment setup employing GaFT

Every aspect of the estimation experiment is described using instances of toolbox classes designated for this purpose. The following picture represents all the basic objects (i.e. classes instances) necessary for the experiment setup.

GaFT Example
  • System:
    • Discrete in time and time invariant
    • Represented by state and measurement functions fk and hk
  • State and measurement noises vk and wk:
    • Gaussian
    • Zero mean values
    • Known time invariant covariance matrixes
  • Initial condition:
    • Described by PDF of Gaussian distribution
    • Known mean values
    • Known covariance matrix
  • Estimator:
    • Extended Kalman filter
    • Represented by instance of the gaftKalman class

Lets first describe the function defining the system dynamics. The function fk is represented as an instance of the class gaftHandleFunction which essentially employs the MATLAB® handle function. The constructor requires the transient function and the dimensions to be specified. However, due to the intend use of extended Kalman Filter (EKF) the first derivatives of the transient function to noise and state are needed as well.

nx = 2;
nw = 2;

fun = @(x,u,w,k) [x(1)*x(2)+w(1);x(2)+w(2)]; % function handle
dims = [nx nx 0 nw 0]; % dimensions [function, state, input, noise, time]

DiffNoise = @(x,u,v,k) eye(nx,nw); % 1st derivative w.r.t. noise
DiffState = @(x,u,w,k) [x(2) x(1);0 1]; % 1st derivative w.r.t. state

f = gaftHandleFunction(fun, dims,... % create function
    'DiffNoise', DiffNoise, 'DiffState', DiffState,... % set partial derivatives for EKFs
    'isAdditive',1); % tell EKFs that noise is addivive

As the measurement is linear, an instance of the gaftLinFunction is sufficient.

H = [1 0];
h = gaftLinFunction(H,[],1); % measurement function

In order to complete the system description, the probability density function of all the state and measurement noises and of the prior have to be described. All three probability density functions are Gaussian hence the gaftGaussian constructor is used in the following manner.

Q = [0.1 0;0 0]; % variance of state noise
w = gaftGaussian(zeros(nw,1),Q);

R = 0.01; % variance of measurement noise
v = gaftGaussian(0,R);

x0m = [10;-0.85]; % prior mean
P0 = 0.1*eye(2); % variance of the prior
x0 = gaftGaussian(x0m,P0);

At this point it is possible to finalize description of the system model using the constructor of the class gaftModel that uses the prepared functions and random variables description. In case that it is necessary to prepare experiment data it is possible to call the method simulate of the object model.

model = gaftModel(f,h,w,v,x0);
timeHorizon = 100; % set time horizon of the simulation
[z,x] = simulate(model,timeHorizon,[]);

The final step is to setup the estimator and proceed with the estimation experiment itself. As the chosen estimator is EKF the class gaftKalman instance will be used. This class implements both the standard Kalman filter and EKF with Joseph form implementation of the algorithm. First the class constructor is called and the object method estimate is used for the estimation process.

ekf = gaftKalman(model); % create EKF instance

estimates = estimate(ekf,z,[]); % process the simulated mesausement data

Example of multiple estimators performance comparison

The following code will present the case when the user needs to compare results from multiple estimators. All the estimator objects can be grouped into cell array for simplicity.

estimators = {...
    gaftUKF(model,'matrixSqrt','chol','x0',x0est),...
    gaftUKF(model,'matrixSqrt','svd','x0',x0est),...
    gaftSRUKF(model,'x0',x0est),...
    gaftKalman(model,'x0',x0est),...
    gaftSRKalman(model,'method','CSG','x0',x0est),...
    gaftSRKalman(model,'method','CSH','x0',x0est),...
    gaftSRKalman(model,'method','BT','x0',x0est)
    };

The filtering estimates are finally computed for all prepared estimators employing the method estimate. Since the output of the method estimate are cell array of Gaussian probability density functions represented a object of the class gaftGaussian, it is necessary to extract the means and variances for further data analysis.

% process the data with all the estimators
for filter=1:nEstimators
  filtEstimates{filter}=estimate(estimators{filter},z,[]);
end

Typical results provided by the described example can be finaly processed to following graphs.

Example results