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
//! Generic (backend-agnosting) tests for mdarray-linalg
//!
//! This is used by the backends to easily express tests that are actually run.

pub mod common;
pub mod eig;
pub mod lu;
pub mod contract;
pub mod matvec;
pub mod qr;
pub mod solve;
pub mod svd;