Trait ndarray_linalg::solve::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,

source§

type Output = ArrayBase<S, Dim<[usize; 2]>>

source§

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

Implementors§

source§

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