pub trait InverseC {
    type Output;

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

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

Required Associated Types

Required Methods

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

Implementations on Foreign Types

Implementors