Trait ndarray_linalg::cholesky::InverseC [] [src]

pub trait InverseC {
    type Output;
    fn invc(&self) -> Result<Self::Output>;
}

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

Associated Types

Required Methods

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

Implementations on Foreign Types

impl<A, S> InverseC for ArrayBase<S, Ix2> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Implementors