pub trait EigSort: Sized {
    fn sort_eig(self, order: Order) -> Self;

    fn sort_eig_asc(self) -> Self { ... }
    fn sort_eig_desc(self) -> Self { ... }
}
Expand description

Sorting of eigendecomposition by the eigenvalues.

Panic

Will panic if shape or layout of inputs differ from eigen output, or if input contains NaN.

Required Methods

Provided Methods

Sort eigendecomposition by the eigenvalues in ascending order

Sort eigendecomposition by the eigenvalues in descending order

Implementations on Foreign Types

Implementation on output of EigValsh traits

Implementation on output of Eigh traits

Implementors