mathru 0.16.2

Fundamental algorithms for scientific computing in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
use mathru::algebra::linear::matrix::{General, HessenbergDecomposition, UpperHessenberg};
use mathru::matrix;

fn main() {
    let a: General<f64> = matrix![  1.0, 5.0, 3.0;
                                    1.0, 0.0, -7.0;
                                    3.0, 8.0, 9.0];

    let (_q, _h): (General<f64>, UpperHessenberg<f64>) = a.dec_hessenberg().qh();
}