Need help: Understanding Kalman Filter (measurement data)
1 view (last 30 days)
Show older comments
Hello, I'm trying to understand the Kalman Filter through this example: http://www.mathworks.com/matlabcentral/fileexchange/31977-kalman-filter-example/content/myKalman.html
My question is, why if I change zHat_t = C*x_t + Ez; into zHat_t = 0; there is no effect into the results of the estimation. Is it mean that the measurement data don't effect the estimation results?
0 Comments
Answers (1)
Youssef Khmou
on 2 May 2013
Edited: Youssef Khmou
on 2 May 2013
hi,
NO that equation depends on the system on which you are applying Kalman filter . you can start first by looking at this famous tutorial which explains the theory first before trying to apply the example .
take a look at pages 13-16
2 Comments
Youssef Khmou
on 2 May 2013
no it is important, suppose you are estimating the velocity of vehicule but what you are measuring is instantaneous position in discrete time so : V(n)= H *x(n) +W(n) W~N(m,var) so H would be the derivation operator to obtain the velocity, however when the data is measured directly like a temperature for example, and the system is noiseless then the second equation is not important, its then the same as : X(n+1)=AX(n)+V(n) ,
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!