Trait ndarray_linalg::eigh::EigValshInto

source ·
pub trait EigValshInto {
    type EigVal;

    // Required method
    fn eigvalsh_into(self, uplo: UPLO) -> Result<Self::EigVal>;
}
Expand description

Calculate eigenvalues without eigenvectors

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

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

Implementors§