rudie 0.1.1

Kalman filter library designed to run on #![no_std] targets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# rudie

Kalman filter implementation for applications such as tracking or localization in robotics.
Can run on on embedded platforms, i.e. used on `#![no_std]` targets.

## Adding rudie to a project

Add the following to your `Cargo.toml` to get started using `rudie`:
```$xslt
[dependencies]
rudie = "0.1"

```