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

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

Calculate eigenvalues without eigenvectors

Associated Types

Loading content...

Required methods

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

Loading content...

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>

Loading content...

Implementors

Loading content...