InverseC

pub trait InverseC {
    type Output;

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

Inverse of Hermitian (or real symmetric) positive definite matrix ref

Required Associated Types§

Required Methods§

Source

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

Computes the inverse of the Hermitian (or real symmetric) positive definite matrix.

Implementors§

Source§

impl<A, S> InverseC for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: Data<Elem = A>,

Source§

impl<A, S> InverseC for CholeskyFactorized<S>
where A: Scalar + Lapack, S: Data<Elem = A>,