Factors a given matrix so that it may be used to solve least squares problems.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void Factor(
	FloatComplexMatrix A
)
Visual Basic (Declaration)
Public Sub Factor ( _
	A As FloatComplexMatrix _
)
Visual C++
public:
void Factor(
	FloatComplexMatrix^ A
)

Remarks

For the QR least squares method to succeed, the matrix A must have full rank.

See Also