Trait ndarray_linalg::solveh::InverseH[][src]

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

An interface for inverting Hermitian (or real symmetric) matrix refs.

Associated Types

Loading content...

Required methods

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

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

Loading content...

Implementations on Foreign Types

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

type Output = Array2<A>

Loading content...

Implementors

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

type Output = Array2<A>

Loading content...