Trait ndarray_linalg::solve::InverseInto[][src]

pub trait InverseInto {
    type Output;
    fn inv_into(self) -> Result<Self::Output>;
}

An interface for inverting matrices.

Associated Types

Loading content...

Required methods

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

Computes the inverse of the matrix.

Loading content...

Implementations on Foreign Types

impl<A, S> InverseInto for ArrayBase<S, Ix2> where
    A: Scalar + Lapack,
    S: DataMut<Elem = A> + RawDataClone
[src]

type Output = Self

Loading content...

Implementors

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

type Output = ArrayBase<S, Ix2>

Loading content...