Kalman Filtering common sense

  1. Common state prediction equation, which has several? (★)
    prediction equation is your reaction to the platform of a priori knowledge, common are:
  • Platform to maintain the same position, then it is x t + 1 = X t x_{t+1} = X_{t} .
  • If uniform rectilinear motion (in front), X = [ x , v ] T X = [x, v]^T X t + 1 = F X t X_{t+1} = FX_{t} , among them F = [ 1 , 1 ; 0 , 1 ] F = [1,1; 0, 1] ;
  • If it is uniformly accelerated linear motion, the situation is a little more complicated; X t + 1 = f ( X t ) X_{t+1} = f(X_{t}) , When the time interval as a constant, f is a linear function remains, X_ {t + 1} =
  1. How predictive equation covariance matrix to understand? (★)
    after passing through the above prediction equation, the variable is still in line with normal distribution.
    P ^ = F P F T + Q \hat{P} = FPF^T + Q
    F. Univariate normal situation and propagation error is the same, such as: ( u , σ 2 ) > ( 2 u , 4 σ 2 ) (u,\sigma^2)->(2u, 4\sigma^2) . Q is the amount of error to bring other, there is some state equations (third), and some do not (first, second).
Published 36 original articles · won praise 3 · views 10000 +

Guess you like

Origin blog.csdn.net/wang_jun_whu/article/details/104011962