EigValshInto

Trait EigValshInto 

Source
pub trait EigValshInto {
    type EigVal;

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

Calculate eigenvalues without eigenvectors

Required Associated Types§

Required Methods§

Source

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

Implementors§

Source§

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