Trait ndarray_linalg::eigh::EigValsh [] [src]

pub trait EigValsh {
    type EigVal;
    fn eigvalsh(&self, _: UPLO) -> Result<Self::EigVal>;
}

Calculate eigenvalues without eigenvectors

Associated Types

Required Methods

Implementations on Foreign Types

impl<A, S> EigValsh for ArrayBase<S, Ix2> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Implementors