Trait InverseC

Source
pub trait InverseC {
    type Output;

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

Inverse of Hermitian (or real symmetric) positive definite matrix ref

Required Associated Typesยง

Required Methodsยง

Source

fn invc(&self) -> Result<Self::Output>

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

Implementations on Foreign Typesยง

Sourceยง

impl<A, S> InverseC for ArrayBase<S, Ix2>
where A: Scalar + Lapack, S: Data<Elem = A>,

Implementorsยง

Sourceยง

impl<A, S> InverseC for CholeskyFactorized<S>
where A: Scalar + Lapack, S: Data<Elem = A>,