InverseCInto

Trait InverseCInto 

Source
pub trait InverseCInto {
    type Output;

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

Inverse of Hermitian (or real symmetric) positive definite matrix

Required Associated Types§

Required Methods§

Source

fn invc_into(self) -> Result<Self::Output, LinalgError>

Computes the inverse of the Hermitian (or real symmetric) positive definite matrix.

Implementors§

Source§

impl<A, S> InverseCInto for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,

Source§

impl<A, S> InverseCInto for CholeskyFactorized<S>
where A: Scalar + Lapack, S: DataMut<Elem = A>,