Skip to main content

InverseHInto

Trait InverseHInto 

Source
pub trait InverseHInto {
    type Output;

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

An interface for inverting Hermitian (or real symmetric) matrices.

Required Associated Types§

Required Methods§

Source

fn invh_into(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, S> InverseHInto for ArrayBase<S, Ix2>
where A: Scalar + Lapack, S: DataMut<Elem = A>,

Implementors§

Source§

impl<A, S> InverseHInto for BKFactorized<S>
where A: Scalar + Lapack, S: DataMut<Elem = A>,