Trait ndarray_linalg::eigh::EigValshInplace[][src]

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

Calculate eigenvalues without eigenvectors

Associated Types

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

Loading content...

Implementors

Loading content...