Home > src > ukf_mcda_predict.m

ukf_mcda_predict

PURPOSE ^

UKF_MCDA_PREDICT UKF Monte Carlo Data Association Prediction

SYNOPSIS ^

function S = ukf_mcda_predict(S,a,Q,param)

DESCRIPTION ^

UKF_MCDA_PREDICT  UKF Monte Carlo Data Association Prediction

 Syntax:
   S = UKF_MCDA_PREDICT(S,a,Q,param)

 In:
   S     - 1xN cell array of particle structures
   a     - Dynamical model as cell array
           of size TxN, for each target in each particle,
           or inline function or name of function in
           form a(x,param).                 (optional, default A(x,i)*X)
   Q     - Process noise of discrete model as numeric matrix
           if common for all targets, or as cell array
           of size TxN for all targets and particles
           separately.                      (optional, default zero)
   param - parameters of a

 Out:
   S     - 1xN cell array of predicted particle structures
   
 Description:
   Perform Unscented Kalman Filter prediction step for each target
   and each association hypothesis particle. The model is

     x_i[k] = a_i(x_i[k-1],param)

   for each target i. Dynamics a_i() for each target
   are assumed to have known statistics.

 See also:
   UKF_MCDA_UPDATE

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:
Generated on Tue 19-Feb-2008 17:08:22 by m2html © 2003