Click or drag to resize

ClusterAnalysisDistances Property

Gets the vector of distances between all possible object pairs, computed using the current distance delegate.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleVector Distances { get; }

Property Value

DoubleVector
Remarks
For n objects, the distance vector is of length (n-1)(n/2), with distances arranged in the order:
C#
(1,2), (1,3), ..., (1,n), (2,3), ..., (2,n), ..., ..., (n-1,n)
See Also