Trait InverseH

Source
pub trait InverseH {
    type Output;

    // Required method
    fn invh(&self) -> Result<Self::Output>;
}
Expand description

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

Required Associated Typesยง

Required Methodsยง

Source

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

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

Implementations on Foreign Typesยง

Sourceยง

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

Implementorsยง

Sourceยง

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