Factors a given matrix so that it may be used to solve least squares problems.
The specified tolerance is used in computing the numerical rank of the matrix.
Namespace:
CenterSpace.NMath.MatrixAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public void Factor( FloatComplexMatrix A, float tolerance ) |
| Visual Basic (Declaration) |
|---|
Public Sub Factor ( _ A As FloatComplexMatrix, _ tolerance As Single _ ) |
| Visual C++ |
|---|
public: void Factor( FloatComplexMatrix^ A, float tolerance ) |
Parameters
- A
- Type: CenterSpace.NMath.Core..::.FloatComplexMatrix
A matrix.
- tolerance
- Type: System..::.Single
Tolerance for computing the numerical rank of the matrix A. All singular values of the matrix A less than tolerance are set to zero.
Remarks
For the SVD least squares method to succeed, the matrix
A must have full rank.