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

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

Eigenvalue decomposition of Hermite matrix reference

Associated Types

type EigVal

type EigVec

Required methods

fn eigh(&self, uplo: UPLO) -> Result<(Self::EigVal, Self::EigVec)>

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

type EigVec = Array2<A>

Implementors