Skip to main content

InverseH

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl<A> InverseH for ArrayRef<A, Ix2>
where A: Scalar + Lapack,

Implementors§

Source§

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