Returns the objects assigned to a given cluster.

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

Syntax

C#
public int[] Cluster(
	int clusterNum
)
Visual Basic (Declaration)
Public Function Cluster ( _
	clusterNum As Integer _
) As Integer()
Visual C++
public:
array<int>^ Cluster(
	int clusterNum
)

Parameters

clusterNum
Type: System..::.Int32
A cluster number.

Return Value

An array of integers indentifying the objects assigned to the given cluster.
The result is calculated on the fly from this.Clusters, so for best performance care should be taken to avoid unnecessary calls to this function.

See Also