vincent290587 / KalmanLib

Linear and extended Kalman filters in C++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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++

License:Other


Languages

Language:C++ 51.1%Language:C 46.6%Language:CMake 1.9%Language:Dockerfile 0.4%