[][src]Trait ndarray_linalg::eigh::EighInplace

pub trait EighInplace {
    type EigVal;
    fn eigh_inplace(&mut self, uplo: UPLO) -> Result<(Self::EigVal, &mut Self)>;
}
[]

Eigenvalue decomposition of mutable reference of Hermite matrix

Associated Types

type EigVal

Required methods

fn eigh_inplace(&mut self, uplo: UPLO) -> Result<(Self::EigVal, &mut Self)>

Implementations on Foreign Types

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

type EigVal = Array1<A::Real>

Implementors