[][src]Trait ndarray_linalg::cholesky::InverseCInto

pub trait InverseCInto {
    type Output;
    fn invc_into(self) -> Result<Self::Output>;
}
[]

Inverse of Hermitian (or real symmetric) positive definite matrix

Associated Types

type Output

Required methods

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

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

Implementations on Foreign Types

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

type Output = Self

Implementors

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