mdarray-linalg 0.2.0

Linear algebra operations for mdarray, with multiple exchangeable backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use mdarray_linalg::Naive;
use mdarray_linalg::testing::qr::*;

#[test]
fn qr_random_matrix() {
    test_qr_random_matrix(&Naive);
}

#[test]
fn qr_structured_matrix() {
    test_qr_structured_matrix(&Naive);
}

#[test]
fn qr_complex_matrix() {
    test_qr_complex_matrix(&Naive);
}