Click or drag to resize
Accord.NET (logo)

QrDecompositionDSolve Method (Decimal)

Least squares solution of A * X = B

Namespace:  Accord.Math.Decompositions
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public decimal[] Solve(
	decimal[] value
)
Request Example View Source

Parameters

value
Type: SystemDecimal
Right-hand-side matrix with as many rows as A and any number of columns.

Return Value

Type: Decimal
A matrix that minimized the two norm of Q * R * X - B.

Implements

ISolverMatrixDecompositionTSolve(T)
Exceptions
ExceptionCondition
ArgumentExceptionMatrix row dimensions must be the same.
InvalidOperationExceptionMatrix is rank deficient.
See Also