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

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

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

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.

Remarks

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

See Also