Trait ndarray_linalg::eigh::EigValshInplace

source ·
pub trait EigValshInplace {
    type EigVal;

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

Calculate eigenvalues without eigenvectors

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

source§

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

source§

type EigVal = ArrayBase<OwnedRepr<<A as Scalar>::Real>, Dim<[usize; 1]>>

source§

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

Implementors§