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

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

Syntax

C#
public SVDRegressionCalculation(
	DoubleMatrix A,
	double tolerance
)
Visual Basic (Declaration)
Public Sub New ( _
	A As DoubleMatrix, _
	tolerance As Double _
)
Visual C++
public:
SVDRegressionCalculation(
	DoubleMatrix^ A, 
	double tolerance
)

Parameters

A
Type: CenterSpace.NMath.Core..::.DoubleMatrix
A matrix.
tolerance
Type: System..::.Double
Tolerance for computing the numerical rank of the matrix A. All singular values of the matrix less than tolerance are set to zero.

See Also