Enumerates the possible methods for solving a least squares problem.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Enumeration LeastSquaresSolutionMethod
C#
public enum LeastSquaresSolutionMethod
C++
public enum class LeastSquaresSolutionMethod

Members

MemberDescription
NormalEquations
Use the normal equations computed from the input.
QRDecomposition
Use a QR decomposition of the input matrix. This is the default.
SingularValueDecomposition
Use a singular value decomposition of the input matrix. This is the most stable method, but also the slowest.