Nonlinear state estimation is a challenge problem. The well-known Kalman Filter is only suitable for linear systems. The Extended Kalman Filter (EKF) has become a standarded formulation for nonlinear state estimation. However, it may cause significant error for highly nonlinear systems because of the propagation of uncertainty through the nonlinear system.
The Unscented Kalman Filter (UKF) is a novel development in the field. The idea is to produce several sampling points (Sigma points) around the current state estimate based on its covariance. Then, propagating these points through the nonlinear map to get more accurate estimation of the mean and covariance of the mapping results. In this way, it avoids the need to calculate the Jacobian, hence incurs only the similar computation load as the EKF.
For tutorial purpose, this code implements a simplified version of UKF formulation, where we assume both the process and measurement noises are additive to avoid augment of state and also to simplify the assumption on nonlinear maps.
The code is heavily commented with an example to use the function. Hence, it is sutiable for beginners to learn the UKF. For comparison, the EKF code can be found from https://www.mathworks.com/matlabcentral/fileexchange/18189-learning-the-extended-kalman-filter
인용 양식
Yi Cao (2024). Learning the Unscented Kalman Filter (https://www.mathworks.com/matlabcentral/fileexchange/18217-learning-the-unscented-kalman-filter), MATLAB Central File Exchange. 검색 날짜: .
MATLAB 릴리스 호환 정보
개발 환경:
R2007a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux카테고리
- Control Systems > System Identification Toolbox > Online Estimation >
- Mathematics and Optimization > Optimization Toolbox > Systems of Nonlinear Equations >
Help Center 및 MATLAB Answers에서 Online Estimation에 대해 자세히 알아보기
태그
도움
도움 받은 파일: Learning the Kalman Filter, Learning the Extended Kalman Filter
도움 준 파일: Neural Network training using the Unscented Kalman Filter, Nonlinear least square optimization through parameter estimation using the Unscented Kalman Filter
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!