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

Loading content...

Required methods

fn inv(&self) -> Result<Self::Output>[src]

Computes the inverse of the matrix.

Loading content...

Implementations on Foreign Types

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

type Output = Array2<A>

Loading content...

Implementors

impl<A, S> Inverse for LUFactorized<S> where
    A: Scalar + Lapack,
    S: Data<Elem = A> + RawDataClone
[src]

type Output = Array2<A>

Loading content...