[][src]Trait ndarray_linalg::eigh::EighInto

pub trait EighInto: Sized {
    type EigVal;
    fn eigh_into(self, uplo: UPLO) -> Result<(Self::EigVal, Self)>;
}

Eigenvalue decomposition of Hermite matrix

Associated Types

type EigVal

Loading content...

Required methods

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

Loading content...

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

Loading content...

Implementors

Loading content...