Trait linfa_linalg::eigh::EigValshInto

source ·
pub trait EigValshInto {
    type EigVal;

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

Eigenvalues of symmetric matrices

Required Associated Types§

Required Methods§

source

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

Calculate eigenvalues of symmetric matrices without eigenvectors, consuming the original

Implementations on Foreign Types§

source§

impl<A: NdFloat, S: DataMut<Elem = A>> EigValshInto for ArrayBase<S, Ix2>

Implementors§