卡尔曼滤波器 Resources

Showing items tagged with "卡尔曼滤波器"

Open source Kalman filter implementation with comprehensive documentation and examples, featuring multiple command functions suitable for both learning and direct practical application

MATLAB 229 views Tagged

MATLAB source code for Kalman Filter implementation with function signature: [Y, PY, KC] = myKalman(x, A, B, Q, H, R, y0, P0). This implementation features a complete Kalman filtering algorithm developed for academic coursework, including state prediction, measurement update, and covariance matrix handling.

MATLAB 220 views Tagged

The Kalman Filter is an "optimal recursive data processing algorithm" that provides the most efficient and effective solution for a wide range of problems. It has seen extensive applications for over 30 years in fields including robotic navigation, control systems, sensor data fusion, military radar systems, and missile tracking. In recent years, it has been increasingly applied to computer image processing tasks such as facial recognition, image segmentation, and edge detection. The filter operates through a two-step process: prediction (projecting state estimates forward) and update (correcting estimates with new measurements), typically implemented using matrix operations for state transition and covariance calculations.

MATLAB 234 views Tagged