Least Squares Solution Method Enumeration
Enumerates the possible methods for solving a least
squares problem.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
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 LeastSquaresSolutionMethod
Members
QRDecomposition | 0 | Use a QR decomposition of the input matrix. This is the default. |
NormalEquations | 1 | Use the normal equations computed from the input. |
SingularValueDecomposition | 2 | Use a singular value decomposition of the input matrix. This is the most stable method, but also the slowest. |
NonNegative | 3 | Ensure that the solution is made up of elements that are non-negative (i.e. positive or zero). |