[][src]Trait ndarray_linalg::eigh::EigValshInto

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

Calculate eigenvalues without eigenvectors

Associated Types

type EigVal

Required methods

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

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

Implementors