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.
pub trait InverseH {
type Output;
// Required method
fn invh(&self) -> Result<Self::Output>;
}An interface for inverting Hermitian (or real symmetric) matrix refs.