|
Algorithm 1 CKF algorithm |
-
Require:
, , , ,
-
Ensure:
,
-
1:
if
then
-
2:
Cholesky decomposition of ;
-
3:
Calculate the Cubature point set ;
-
4:
Propagate the Cubature point by using the state equation ;
-
5:
Calculate the prediction of the state ;
-
6:
Calculate the prediction of the state covariance matrix ;
-
7:
Cholesky decomposition of ;
-
8:
Calculate the Cubature point set again ;
-
9:
Propagate the Cubature point by using the measurement equation ;
-
10:
Calculate the prediction of the measurement ;
-
11:
Calculate the autocorrelation matrix ;
-
12:
Calculate the cross-correlation matrix ;
-
13:
Calculate the filtering gain ;
-
14:
Calculate the estimation of the state ;
-
15:
Calculate the estimation of the state covariance matrix ;
-
16:
end if
|