Enum linxal::least_squares::LeastSquaresError
[−]
[src]
pub enum LeastSquaresError {
BadLayout,
InconsistentLayout,
InconsistentDimensions(usize, usize),
Degenerate,
IllegalParameter(i32),
}Variants
BadLayoutOne of the matrices has an invalid layout.
InconsistentLayoutMatrix a and b have inconsistent layouts (i.e. row
vs. column-major)
InconsistentDimensions(usize, usize)a and b have different numbers of rows.
Degeneratea is not full rank
IllegalParameter(i32)Should never happend.