How a Kalman filter works, in pictures (2015)
1–10 of 35 posts
Re: How a Kalman filter works, in pictures (2015)
#2But in industry Worse Is Better and Kalman Filters is ofent just the optimal way to remove noise you yourself added in your simulation.
I've never seen any implementation use of Kalman filters where the covariance matrix is actually sound ... and I usually go with just lowpassfilters or moving averages.
Re: How a Kalman filter works, in pictures (2015)
#3Nice pics for exam studies. But in industry Worse Is Better and Kalman Filters is ofent just the optimal way to remove noise you yourself added in your simulation. I've never seen any implementation use of Kalman filters where the covariance matrix is actually sound ... and I usually go with just lowpassfilters or moving averages.
Re: How a Kalman filter works, in pictures (2015)
#4http://htmlpreview.github.io/?https://github.com/aguaviva/Ka...
Re: How a Kalman filter works, in pictures (2015)
#5Nice pics for exam studies. But in industry Worse Is Better and Kalman Filters is ofent just the optimal way to remove noise you yourself added in your simulation. I've never seen any implementation use of Kalman filters where the covariance matrix is actually sound ... and I usually go with just lowpassfilters or moving averages.
Re: How a Kalman filter works, in pictures (2015)
#6https://news.ycombinator.com/item?id=13449229 (213 points, Jan 21 2017, 32 comments)
Re: How a Kalman filter works, in pictures (2015)
#7Re: How a Kalman filter works, in pictures (2015)
#8Nice pics for exam studies. But in industry Worse Is Better and Kalman Filters is ofent just the optimal way to remove noise you yourself added in your simulation. I've never seen any implementation use of Kalman filters where the covariance matrix is actually sound ... and I usually go with just lowpassfilters or moving averages.
Re: How a Kalman filter works, in pictures (2015)
#9It looks very similar to Bayesian estimation. I wonder what is really the difference. Does any of you know, or have a link that explains it?
Re: How a Kalman filter works, in pictures (2015)
#10It looks very similar to Bayesian estimation. I wonder what is really the difference. Does any of you know, or have a link that explains it?
For example, for a stationary linear Gaussian model, you have a transition model of the form: z_t = Az_{t-1} + Bu_t + e where e ~ Gaussian(0,Q) and an observation model of the form: x_t = Cz_{t} + Du_t + d, where, d ~ Gaussian (0,R)
Since, z_t and x_t are both multivariate gaussians in this model, you can compute the posterior distribution on z_t's, which will also be a Gaussian. That is basically the Kalman filter.
As the writeup mentions, you might choose a non-Gaussian noise model, in which case the posterior distribution is not a Gaussian and then you employ something like a unscented Kalman filter or extended Kalman filter.