Returns the specified singular value.

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

Syntax

C#
public double SingularValue(
	int i
)
Visual Basic (Declaration)
Public Function SingularValue ( _
	i As Integer _
) As Double
Visual C++
public:
double SingularValue(
	int i
)

Parameters

i
Type: System..::.Int32
Index.

Return Value

The ith singular value.

Remarks

This is the same as the ith diagonal element of the matrix S.

See Also