Linear Least Squares Method Enumeration
Enumerates the possible methods for solving a least
squares problem.
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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. |