public static double CentroidLinkage(
DoubleMatrix left,
DoubleMatrix right
)
Public Shared Function CentroidLinkage (
left As DoubleMatrix,
right As DoubleMatrix
) As Double
public:
static double CentroidLinkage(
DoubleMatrix^ left,
DoubleMatrix^ right
)
static member CentroidLinkage :
left : DoubleMatrix *
right : DoubleMatrix -> float
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.
ArgumentNullException | left is null. -or- right is null. |
ArgumentException | right has not the same NumberOfColumns of left. |