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

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

Calculate eigenvalues without eigenvectors

Associated Types

type EigVal

Required methods

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

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

Implementors