Enumerates the possible methods for solving a least
squares problem.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum LinearLeastSquaresMethod
Public Enumeration LinearLeastSquaresMethod
public enum class LinearLeastSquaresMethod
type LinearLeastSquaresMethod
| Member name | Value | Description |
---|
| NormalEquations | 1 |
Use the normal equations computed from the input.
|
| QRDecomposition | 0 |
Use a QR decomposition. This is the default.
|
| SingularValueDecomposition | 2 |
Use a singular value decomposition. This is the most stable and reliable method, but also the slowest.
|
This enumeration is used by the LinearCurveFitter class
to specify how the least squares solution is to be calculated.
Reference