Given an entry aij in the connectivity matrix A, this delegate must return the distance between the elements i and j to be used for performing the hierarchical cluster analysis.

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

Syntax

C#
public delegate double ElementDistance(
	int i,
	int j
)
Visual Basic (Declaration)
Public Delegate Function ElementDistance ( _
	i As Integer, _
	j As Integer _
) As Double
Visual C++
public delegate double ElementDistance(
	int i, 
	int j
)

Parameters

i
Type: System..::.Int32
ith element.
j
Type: System..::.Int32
jth element.

Return Value

See Also