Gram Schmidt Orthonormalizatoin

Orthogonalization and QR decomposition of matrices in the Rust programming language and rust-ndarray.

This crate provides the following methods:

Usage

```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(()) } ```

Recent versions