ndarray_linalg::eigh

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§

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§