Trait Eigh

Source
pub trait Eigh {
    type EigVal;
    type EigVec;

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

Eigenvalue decomposition of Hermite matrix reference

Required Associated Typesยง

Required Methodsยง

Source

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

Implementations on Foreign Typesยง

Sourceยง

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

Sourceยง

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

Implementorsยง