DistanceSingleLinkage Method

Computes the single linkage between the specified clusters.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static double SingleLinkage(
	DoubleMatrix left,
	DoubleMatrix right
)

Parameters

left  DoubleMatrix
The left cluster.
right  DoubleMatrix
The right cluster.

Return Value

Double
The single linkage between the specified clusters.

Remarks

A cluster is defined as a set of multidimensional points. The rows of left or right are interpreted as the multidimensional points in the cluster.

This method returns the shortest Euclidean distance between pairs of individuals in which one belongs to cluster left, the other to cluster right.

Exceptions

ArgumentNullExceptionleft is null.
-or-
right is null.
ArgumentExceptionright has not the same NumberOfColumns of left.

See Also