InverseH

pub trait InverseH {
    type Output;

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

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

Required Associated Types§

Required Methods§

Source

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

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

Implementors§

Source§

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

Source§

impl<A, Si> InverseH for ArrayBase<Si, Dim<[usize; 2]>>
where A: Scalar + Lapack, Si: Data<Elem = A>,