Trait ndarray_linalg::eigh::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§

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

source§

type EigVec = ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>

source§

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

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>,

source§

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

source§

type EigVec = (ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>, ArrayBase<OwnedRepr<A>, Dim<[usize; 2]>>)

source§

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

Implementors§