mdarray-linalg 0.1.2

Linear algebra operations for mdarray, with multiple exchangeable backends
Documentation
1
2
3
4
5
6
7
8
9
//! This module can be wildcard-imported to make the traits available without polluting the local
//! namespace.

pub use super::eig::Eig;
pub use super::lu::LU;
pub use super::matmul::{ContractBuilder, MatMul, MatMulBuilder};
pub use super::matvec::{Argmax, MatVec, MatVecBuilder, VecOps};
pub use super::qr::QR;
pub use super::svd::SVD;