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

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

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

Associated Types

type Output

Required methods

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

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 + Lapack,
    S: Data<Elem = A>, 
[src][]

type Output = Array2<A>

Implementors

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