DistanceCentroidLinkage Method

Computes the centroid 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 CentroidLinkage(
	DoubleMatrix left,
	DoubleMatrix right
)

Parameters

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

Return Value

Double
The centroid 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 Euclidean distance between the average points (centroids) of the two specified clusters.

Exceptions

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

See Also