Trait InverseInto

Source
pub trait InverseInto {
    type Output;

    // Required method
    fn inv_into(self) -> Result<Self::Output>;
}
Expand description

An interface for inverting matrices.

Required Associated Typesยง

Required Methodsยง

Source

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

Computes the inverse of the matrix.

Implementations on Foreign Typesยง

Sourceยง

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

Implementorsยง

Sourceยง

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