Enum linxal::least_squares::LeastSquaresError [] [src]

pub enum LeastSquaresError {
    BadLayout,
    InconsistentLayout,
    InconsistentDimensions(usizeusize),
    Degenerate,
    IllegalParameter(i32),
}

Variants

One of the matrices has an invalid layout.

Matrix a and b have inconsistent layouts (i.e. row vs. column-major)

a and b have different numbers of rows.

a is not full rank

Should never happend.

Trait Implementations

impl Debug for LeastSquaresError
[src]

Formats the value using the given formatter.