Crate lstsq for the Rust language

Crates.io Documentation Crate License Dependency status build

Return the least-squares solution to a linear matrix equation

About

The crate implements the linear least squares solution to a linear matrix equation.

Characteristics:

Testing

Unit tests

To run the unit tests:

cargo test

Test for no_std

Since the thumbv7em-none-eabihf target does not have std available, we can build for it to check that our crate does not inadvertently pull in std. The unit tests require std, so cannot be run on a no_std platform. The following will fail if a std dependency is present:

```

install target with: "rustup target add thumbv7em-none-eabihf"

cargo build --no-default-features --target thumbv7em-none-eabihf ```