EighInto

pub trait EighInto: Sized {
    type EigVal;

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

Eigenvalue decomposition of Hermite matrix

Required Associated Types§

Required Methods§

Source

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

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, S2> EighInto for (ArrayBase<S, Dim<[usize; 2]>>, ArrayBase<S2, Dim<[usize; 2]>>)
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<(<(ArrayBase<S, Dim<[usize; 2]>>, ArrayBase<S2, Dim<[usize; 2]>>) as EighInto>::EigVal, (ArrayBase<S, Dim<[usize; 2]>>, ArrayBase<S2, Dim<[usize; 2]>>)), LinalgError>

Implementors§

Source§

impl<A, S> EighInto for ArrayBase<S, Dim<[usize; 2]>>
where A: Scalar + Lapack, S: DataMut<Elem = A>,