Enum linxal::factorization::qr::QRError [] [src]

pub enum QRError {
    BadLayout,
    InconsistentDimensions,
    IllegalParameter(i32),
}

Error for QR-based computations.

Variants

The layout of the matrix is not compatible

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

Implementation error, please submit as bug.

Trait Implementations

impl Debug for QRError
[src]

Formats the value using the given formatter.

impl Clone for QRError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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