pub trait Eig {
type Elem;
// Required method
fn eig(
&self,
) -> Result<(Array1<Self::Elem>, Array2<Self::Elem>), LapackError>;
}Expand description
Eigenvalue decomposition trait (general matrices)
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".