Trait ndarray_linalg::eigh::Eigh [] [src]

pub trait Eigh {
    type EigVal;
    type EigVec;
    fn eigh(&self, _: UPLO) -> Result<(Self::EigVal, Self::EigVec)>;
}

Eigenvalue decomposition of Hermite matrix reference

Associated Types

Required Methods

Implementations on Foreign Types

impl<A, S> Eigh for ArrayBase<S, Ix2> where
    A: Scalar,
    S: Data<Elem = A>, 
[src]

[src]

Implementors