Click or drag to resize

DistanceEuclidean Method

Computes the Euclidean distance matrix of the specified cluster.

Namespace:  Novacta.Analytics
Assembly:  Novacta.Analytics (in Novacta.Analytics.dll) Version: 2.0.0
Syntax
public static DoubleMatrix Euclidean(
	DoubleMatrix cluster
)

Parameters

cluster
Type: Novacta.AnalyticsDoubleMatrix
The cluster.

Return Value

Type: DoubleMatrix
The Euclidean distance matrix of the specified cluster.
Exceptions
ExceptionCondition
ArgumentNullExceptioncluster is null.
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.

See Also