Enum linxal::eigenvalues::types::EigenError [] [src]

pub enum EigenError {
    NotSquare,
    BadLayout,
    IllegalParameter(i32),
    Failed,
}

Errors from an eigenvalue problem.

Variants

The input matrix is not square.

The input matrix does not have a conforming layout.

The parameter to the LAPACKE method was invalid.

This error should not occur in user-facing code.

Eigenvalues could not be found.

Trait Implementations

impl Debug for EigenError
[src]

Formats the value using the given formatter.

impl Clone for EigenError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for EigenError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for EigenError
[src]