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