Expand description
It’s not BLASed, it’s cursed!
§Introduction
This crate implements common linear algebra functionality in Rust directly in terms of ndarray data structures, without a dependency on BLAS or LAPACK. Implementing in pure-Rust makes it easier to target linear algebra applications without requiring any additional shared libraries.
§Status
- This crate is under development, and may be missing essential features, and functions may hit
todo!orunimplemented!panics. - Performance and numerical stability improvements may be needed for your application.
- Unit, integration, and performance tests are being developed, and may not have full coverage.
§Licensed
[cursed-linalg] is licensed under the MIT license.
§Acknowledgments
- Portions of this library were ported from MathNet.Numerics under the MIT license.
cauchyis used to abstract over different representations of complex scalars.thiserroris used to create error enums.mietteis used to provide nice diagnostics for errors.
Modules§
- error
- Module defining common errors that can occur during linear algebra operations.
Structs§
Traits§
- Expm
- Types that support the matrix exponential $e^{A}$.
- Inv
- Types that support the matrix inverse $A^{-1}$.
- LUDecomposable
- LUDecomposition