#kalman-filter #kalman #bayesian #smoothing #observation #nalgebra #rauch-tung-striebel

no-std adskalman

Kalman filter and Rauch-Tung-Striebel smoothing implementation using nalgebra, no_std

19 releases (breaking)

0.15.1 Feb 1, 2024
0.15.0 Jan 16, 2023
0.14.0 May 2, 2022
0.13.0 Jan 2, 2022
0.2.0 May 8, 2020

#206 in Algorithms

Download history 72/week @ 2023-12-25 120/week @ 2024-01-01 164/week @ 2024-01-08 260/week @ 2024-01-15 624/week @ 2024-01-22 681/week @ 2024-01-29 690/week @ 2024-02-05 265/week @ 2024-02-12 347/week @ 2024-02-19 593/week @ 2024-02-26 619/week @ 2024-03-04 394/week @ 2024-03-11 385/week @ 2024-03-18 406/week @ 2024-03-25 365/week @ 2024-04-01 340/week @ 2024-04-08

1,539 downloads per month

MIT/Apache

30KB
421 lines

adskalman-rs

Crates.io Documentation Crate License build

Kalman filter and Rauch-Tung-Striebel smoothing implementation.

  • Includes various methods of computing the covariance matrix on the update step.
  • Estimates state of arbitrary dimensions using observations of arbitrary dimension.
  • Types are checked at compile time.
  • Uses nalgebra for linear algebra.
  • Supports no_std operation to run on embedded devices.

disabling log::trace in release builds

To support debugging, adskalman extensively uses the log::trace!() macro. You probably do not want this in your release builds. Therefore, in your top-level application crate, you may want to use the release_max_level_debug feature for the log crate like so:

[dependencies]
log = { version = "0.4", features = ["release_max_level_debug"] }

See the log documentation for more information.

Running the examples

There are several examples in the examples/ directory, which is its own crate. Run them like so:

cd examples
cargo run --bin online_tracking

Code of conduct

Anyone who interacts with this software in any space, including but not limited to this GitHub repository, must follow our code of conduct.

License

Licensed under either of these:

Dependencies

~3MB
~66K SLoC