Truncates all singular values that are less than a given tolerance by setting them to zero.

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

Syntax

C#
public void Truncate(
	float tolerance
)
Visual Basic (Declaration)
Public Sub Truncate ( _
	tolerance As Single _
)
Visual C++
public:
void Truncate(
	float tolerance
)

Parameters

tolerance
Type: System..::.Single
Singular values less than tolerance are set to zero.

Remarks

This method can change the Rank and the number of singular vectors in the decomposition.

See Also