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 extern crate gramschmidt; extern crate ndarray;

// Import openblassrc or another blas source to have the linker find all symbols. extern crate openblassrc;

fn main() { 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 = ReorthogonalizedGramSchmidt::frommatrix(&smallmatrix); cgs2.compute(&smallmatrix); assert!(smallmatrix.allclose(&cgs2.q().dot(cgs2.r()), 1e-14)); } ```

Recent versions