EigValshInplace

Trait EigValshInplace 

Source
pub trait EigValshInplace {
    type EigVal;

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

Calculate eigenvalues without eigenvectors

Required Associated Types§

Required Methods§

Source

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

Implementors§

Source§

impl<A, S> EigValshInplace for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,