Constructs a FloatSVDLeastSq instance from the given matrix. The specified tolerance is used in computing the numerical rank of the matrix.

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

Syntax

C#
public FloatSVDLeastSq(
	FloatMatrix A,
	float tolerance
)
Visual Basic (Declaration)
Public Sub New ( _
	A As FloatMatrix, _
	tolerance As Single _
)
Visual C++
public:
FloatSVDLeastSq(
	FloatMatrix^ A, 
	float tolerance
)

Parameters

A
Type: CenterSpace.NMath.Core..::.FloatMatrix
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.

See Also