Click or drag to resize

DoubleSVDLeastSqFactor(DoubleMatrix, Double) Method

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.4
Syntax
public void Factor(
	DoubleMatrix A,
	double tolerance
)

Parameters

A  DoubleMatrix
A matrix.
tolerance  Double
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.
See Also