Enum linxal::factorization::lu::LUError [] [src]

pub enum LUError {
    BadLayout,
    NotSquare,
    Singular,
    InconsistentDimensions,
    IllegalParameter(i32),
}

Error for LU-based computations.

Variants

The layout of the matrix is not compatible

The matrix is not square, but the operation requires a square matrix.

The matrix is not invertible.

The dimensions of the raw qr and tau don't match

Implementation error, please submit as bug.

Trait Implementations

impl Debug for LUError
[src]

Formats the value using the given formatter.

impl Clone for LUError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for LUError
[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 LUError
[src]