Trait ndarray_linalg::cholesky::InverseCInto

source ·
pub trait InverseCInto {
    type Output;

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

Inverse of Hermitian (or real symmetric) positive definite matrix

Required Associated Types§

Required Methods§

source

fn invc_into(self) -> Result<Self::Output>

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

Implementations on Foreign Types§

source§

impl<A, S> InverseCInto for ArrayBase<S, Ix2>
where A: Scalar + Lapack, S: DataMut<Elem = A>,

Implementors§

source§

impl<A, S> InverseCInto for CholeskyFactorized<S>
where A: Scalar + Lapack, S: DataMut<Elem = A>,