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