LinearLeastSquaresMethod 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#
public enum LinearLeastSquaresMethod

Remarks

This enumeration is used by the LinearCurveFitter class to specify how the least squares solution is to be calculated.

Members

QRDecomposition0 Use a QR decomposition. This is the default.
NormalEquations1 Use the normal equations computed from the input.
SingularValueDecomposition2 Use a singular value decomposition. This is the most stable and reliable method, but also the slowest.

See Also