pub trait InverseC {
    type Output;

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

Inverse of a symmetric positive definite matrix

Required Associated Types

Required Methods

Computes inverse of symmetric positive definite matrix.

Implementations on Foreign Types

Implementors