sunsided / minikalman-rs

Fixed- and floating-point Kalman filters for resource-constrained environments, written in Rust.
https://crates.io/crates/minikalman
MIT License
3 stars 1 forks source link

Add support for na / nalgebra crates? #13

Open sunsided opened 3 weeks ago

sunsided commented 3 weeks ago

Can we make use of na types (even if we may run our own implementation)?

sunsided commented 2 weeks ago

One big issue to deal with is that nalgebra is column-major by default, whereas minikalman assumes row-major matrices. While it is possible to expose minikalman matrices to nalgebra (#29 started that), the other way around is much more involved.