Trait linfa_linalg::eigh::EigValsh

source ·
pub trait EigValsh {
    type EigVal;

    // Required method
    fn eigvalsh(&self) -> Result<Self::EigVal>;
}
Expand description

Eigenvalues of symmetric matrices

Required Associated Types§

Required Methods§

source

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

Calculate eigenvalues of symmetric matrices without eigenvectors

Implementations on Foreign Types§

source§

impl<A: NdFloat, S: Data<Elem = A>> EigValsh for ArrayBase<S, Ix2>

Implementors§