Trait 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§