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

Loading content...

Required methods

fn invc(&self) -> Result<Self::Output>[src]

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

Loading content...

Implementations on Foreign Types

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

type Output = Array2<A>

Loading content...

Implementors

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

type Output = Array2<A>

Loading content...