[][src]Trait ndarray_linalg::eig::Eig

pub trait Eig {
    type EigVal;
    type EigVec;
    fn eig(&self) -> Result<(Self::EigVal, Self::EigVec)>;
}

Eigenvalue decomposition of general matrix reference

Associated Types

type EigVal

EigVec is the right eivenvector

type EigVec

Loading content...

Required methods

fn eig(&self) -> Result<(Self::EigVal, Self::EigVec)>

Calculate eigenvalues with the right eigenvector

Loading content...

Implementations on Foreign Types

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

type EigVal = Array1<A::Complex>

type EigVec = Array2<A::Complex>

Loading content...

Implementors

Loading content...