pub trait EigValshInplace {
type EigVal;
// Required method
fn eigvalsh_inplace(
&mut self,
uplo: UPLO,
) -> Result<Self::EigVal, LinalgError>;
}Expand description
Calculate eigenvalues without eigenvectors
pub trait EigValshInplace {
type EigVal;
// Required method
fn eigvalsh_inplace(
&mut self,
uplo: UPLO,
) -> Result<Self::EigVal, LinalgError>;
}Calculate eigenvalues without eigenvectors