Trait ndarray_linalg::solve::Inverse[][src]

pub trait Inverse {
    type Output;
    fn inv(&self) -> Result<Self::Output>;
}
Expand description

An interface for inverting matrix refs.

Associated Types

Required methods

Computes the inverse of the matrix.

Implementations on Foreign Types

Implementors