Click or drag to resize
QRSolve Method (Double)
Returns the solution to the least-squares problem Ax = b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[] Solve(
	double[] b
)

Parameters

b
Type: SystemDouble
A double array to be manipulated.

Return Value

Type: Double
A double array containing the solution vector to Ax = b with components corresponding to the unused columns set to zero.
Exceptions
ExceptionCondition
SingularMatrixException is thrown when the upper triangular matrix R resulting from the QR factorization is singular
See Also