Trait linfa_linalg::cholesky::InverseCInplace

source ·
pub trait InverseCInplace {
    type Output;

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

Inverse of a symmetric positive definite matrix

Required Associated Types§

Required Methods§

source

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

Computes inverse of symmetric positive definite matrix.

As a side effect, self is used to calculate an in-place Cholesky decomposition.

Implementations on Foreign Types§

source§

impl<A: NdFloat, S: DataMut<Elem = A>> InverseCInplace for ArrayBase<S, Ix2>

Implementors§