pub trait SymmetricEigen<T: Element> {
    fn decompose(&self) -> Result<(Conventional<T>, Diagonal<T>)>;
}
Expand description

The eigendecomposition for symmetric matrices.

Required Methods§

Perform the decomposition.

Implementors§