Skip to content

vincent290587/KalmanLib

Repository files navigation

Project

This is a C++ Kalman filtering library with both a linear and an extended implementation of the filter.
Interestingly it uses a custom C++ matrix implementation that allows for classical matrix operations:

// z - C*x_est
UDMatrix matI, innov;
matI = descr->ker.matC * descr->ker.matXmi;
innov = feed->matZ - matI;

Roadmap

  • Basic unit testing
  • Bike simulation

About

Linear and extended Kalman filters in C++

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published