Trait ndarray_linalg::eigh::EighInto

source ·
pub trait EighInto: Sized {
    type EigVal;

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

Eigenvalue decomposition of Hermite matrix

Required Associated Types§

Required Methods§

source

fn eigh_into(self, uplo: UPLO) -> Result<(Self::EigVal, Self)>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

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

source§

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

source§

fn eigh_into(self, uplo: UPLO) -> Result<(Self::EigVal, Self)>

source§

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

source§

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

source§

fn eigh_into(self, uplo: UPLO) -> Result<(Self::EigVal, Self)>

Implementors§