Trait linfa_linalg::cholesky::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§