DistanceEuclidean Method

Computes the Euclidean distance matrix of the specified cluster.

Definition

Namespace: Novacta.Analytics
Assembly: Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.1.0+428f3840cfab98dda567bb0ed350b302533e273a
C#
public static DoubleMatrix Euclidean(
	DoubleMatrix cluster
)

Parameters

cluster  DoubleMatrix
The cluster.

Return Value

DoubleMatrix
The Euclidean distance matrix of the specified cluster.

Remarks

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

This method returns the matrix of Euclidean distances among the points in the specified cluster.

Exceptions

ArgumentNullExceptioncluster is null.

See Also