Linear algebra library for the Rust programming language.
See here.
To use this crate for stable Rust channel, add la as a dependency to your project's Cargo.toml:
[dependencies]
la = "0.2.0"
For nightly-build:
[dependencies]
la = { git = "https://github.com/xasmx/rust-la" }
- BLAS
- immutable and mutable implementations
- inverse, solve
- decompositions, including
- Cholesky
- LU
- QR
- Eigen
- SVD.
Only dense matrixes.