pub trait InverseHInto {
type Output;
// Required method
fn invh_into(self) -> Result<Self::Output, LinalgError>;
}Expand description
An interface for inverting Hermitian (or real symmetric) matrices.
Required Associated Types§
Required Methods§
Sourcefn invh_into(self) -> Result<Self::Output, LinalgError>
fn invh_into(self) -> Result<Self::Output, LinalgError>
Computes the inverse of the Hermitian (or real symmetric) matrix.