Trait ndarray_linalg::eig::EigVals[][src]

pub trait EigVals {
    type EigVal;
    fn eigvals(&self) -> Result<Self::EigVal>;
}

Calculate eigenvalues without eigenvectors

Associated Types

Loading content...

Required methods

fn eigvals(&self) -> Result<Self::EigVal>[src]

Loading content...

Implementations on Foreign Types

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

type EigVal = Array1<A::Complex>

Loading content...

Implementors

Loading content...