Trait InverseC

Source
pub trait InverseC {
    type Output;

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

Inverse of a symmetric positive definite matrix

Required Associated Types§

Required Methods§

Source

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

Computes inverse of symmetric positive definite matrix.

Implementations on Foreign Types§

Source§

impl<A: NdFloat, S: Data<Elem = A>> InverseC for ArrayBase<S, Ix2>

Implementors§