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

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

Loading content...

Required methods

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

Loading content...

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>

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

type EigVal = Array1<A::Real>

type EigVec = (Array2<A>, Array2<A>)

Loading content...

Implementors

Loading content...