pub trait EigValsh<EigVal> {
fn eigvalsh(self, _: UPLO) -> Result<EigVal>;
}
Required Methods
Implementors
impl<A, S, Se> EigValsh<ArrayBase<Se, Ix1>> for ArrayBase<S, Ix2> where
A: LapackScalar,
S: DataMut<Elem = A>,
Se: DataOwned<Elem = A::Real>,
impl<'a, A, S, Se> EigValsh<ArrayBase<Se, Ix1>> for &'a ArrayBase<S, Ix2> where
A: LapackScalar + Copy,
S: Data<Elem = A>,
Se: DataOwned<Elem = A::Real>,
impl<'a, A, S, Se> EigValsh<ArrayBase<Se, Ix1>> for &'a mut ArrayBase<S, Ix2> where
A: LapackScalar,
S: DataMut<Elem = A>,
Se: DataOwned<Elem = A::Real>,