Skip to main content
. 2013 Oct 21;13(10):14133–14160. doi: 10.3390/s131014133

Algorithm 2: Event based KF, Differential case

Input : uk,zk,xk−1,Pk−1,LGM
Output: k,Pk
Data: A, B and H from model (5), Qk,Rk,ANXT,Qx
Initialization: x0,P0
for current time k do
 Prediction Step KF:
k = Ak−1+Buk−1
Pk = APk−1AT+Qk
 Correction Step KF:
Kk=PkHkT(HkPkHkT+Rk)1
k = k+Kk[zkHx̂k]
Pk = (IKk Hk)Pk
 Pose estimation using (2)
 Covariance propagation using (14)
 3 − σ ellipsoid area Aellip using (12)
RA = Aellip/ANXT
if RA > RA,lim then
  Global Correction Step:
  (same as Algorithm 4)
end
end