ndarray_linalg::eigh

Trait 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)>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so 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§