Trait EigValsh

Source
pub trait EigValsh {
    type EigVal;

    // Required method
    fn eigvalsh(&self, uplo: UPLO) -> Result<Self::EigVal>;
}
Expand description

Calculate eigenvalues without eigenvectors

Required Associated Typesยง

Required Methodsยง

Source

fn eigvalsh(&self, uplo: UPLO) -> Result<Self::EigVal>

Implementations on Foreign Typesยง

Sourceยง

impl<A, S> EigValsh for ArrayBase<S, Ix2>
where A: Scalar + Lapack, S: Data<Elem = A>,

Implementorsยง