 | DoubleComplexSVDLeastSqFactor Method (DoubleComplexMatrix, Double) |
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.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic void Factor(
DoubleComplexMatrix A,
double tolerance
)
Public Sub Factor (
A As DoubleComplexMatrix,
tolerance As Double
)
public:
void Factor(
DoubleComplexMatrix^ A,
double tolerance
)
member Factor :
A : DoubleComplexMatrix *
tolerance : float -> unit
Parameters
- A
- Type: CenterSpace.NMath.CoreDoubleComplexMatrix
A matrix. - tolerance
- Type: SystemDouble
Tolerance for computing the numerical
rank of the matrix A. All singular values of the matrix
A less than tolerance are set to zero.
RemarksFor the SVD least squares method to succeed, the matrix
A must have full rank.
See Also