Linear Least Squares Method Enumeration
Enumerates the possible methods for solving a least
squares problem.
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum LinearLeastSquaresMethod
Remarks
This enumeration is used by the LinearCurveFitter class to specify how the least squares solution is to be calculated.
Members
QRDecomposition | 0 | Use a QR decomposition. This is the default. |
NormalEquations | 1 | Use the normal equations computed from the input. |
SingularValueDecomposition | 2 | Use a singular value decomposition. This is the most stable and reliable method, but also the slowest. |