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

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

An interface for inverting matrix refs.

Associated Types

Required Methods

Computes the inverse of the matrix.

Implementations on Foreign Types

impl<A, Si> Inverse for ArrayBase<Si, Ix2> where
    A: Scalar,
    Si: Data<Elem = A>, 
[src]

[src]

Implementors