0.13.0
termoshtt
released this
20 Feb 14:44
·
250 commits
to master
since this release
https://github.com/rust-ndarray/ndarray-linalg/milestone/5
Updated dependencies
optional dependencies
Added
Changed
- Dual license, MIT or Apache-2.0 License #262
- Revise tests for least-square problem #227
- Support static link to LAPACK backend #204
- Drop LAPACKE dependence, and rewrite them in Rust (see below) #206
- Named record like
C { row: i32, lda: i32 }
instead of enum forMatrixLayout
#211 - Split LAPACK error into computational failure and invalid values #210
- Use thiserror crate #208
LAPACKE rewrite
- Cholesky #225
- Eigenvalue for general matrix #212
- Eigenvalue for symmetric/Hermitian matrix #217
- least squares problem #220
- QR decomposition #224
- LU decomposition #213
- LDL decomposition #216
- SVD #218
- SVD divid-and-conquer #219
- Tridiagonal #235