Trait array_matrix::matrix::eig::Eig

source ·
pub trait Eig: Matrix {
    type Output;

    fn eig(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Returns an approximation of the eigenvalues of a matrix

eig(A)

Examples
let a = [
    [1.0, 2.0],
    [3.0, 4.0]
];
let eig_a = eig(a);

Implementations on Foreign Types§

Implementors§