Eig

Trait Eig 

Source
pub trait Eig {
    type Elem;

    // Required method
    fn eig(
        &self,
    ) -> Result<(Array1<Self::Elem>, Array2<Self::Elem>), LapackError>;
}
Expand description

Eigenvalue decomposition trait (general matrices)

Required Associated Types§

Required Methods§

Source

fn eig(&self) -> Result<(Array1<Self::Elem>, Array2<Self::Elem>), LapackError>

Implementors§