Orthogonalization and QR decomposition of matrices in the Rust programming language and rust-ndarray
.
This crate provides the following methods:
cgs
,mgs
,cgs2
.```rust // Import openblassrc or another blas source to have the linker find all symbols. extern crate openblassrc;
use gramschmidt::{ GramSchmidt, Reorthogonalized, Result, }; use ndarray::arr2;
fn main() -> Result<()> { let smallmatrix = arr2( &[[2.0, 0.5, 0.0, 0.0], [0.0, 0.3, 0.0, 0.0], [0.0, 1.0, 0.7, 0.0], [0.0, 0.0, 0.0, 3.0]] ); let mut cgs2 = Reorthogonalized::frommatrix(&smallmatrix)?; cgs2.compute(&smallmatrix)?; assert!(smallmatrix.allclose(&cgs2.q().dot(cgs2.r()), 1e-14)); Ok(()) } ```
0.6.0
: Fixed the dimensions of the triangular matrix R
:
0.5.0
: Refactored the library and updated for edition 2018
GramSchmidt
trait;cgs
, cgs2
, and mgs
.0.4.1
: Fixed doc tests and expanded + simplified tests.0.4.0
: Major rework of the library structure:
ClassicalGramSchmidt
, ModifiedGramSchmidt
, and
ReorthogonalizedGramSchmidt
(known as cgs
, mgs
, and cgs2
in the
literature, respectively);cgs
and cgs2
are implemented using blas
routines (major speedup!);0.3.1
: Update to blas 0.16
and do not specify a default backend (so that the user can set it).0.3.0
: Update to ndarray 0.10
, ndarray-parallel 0.5
0.2.1
: Added a parallelized algorithm using rayon
0.2.0
: Update to ndarray 0.9