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

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public DoubleVector Distances { get; }
Visual Basic (Declaration)
Public ReadOnly Property Distances As DoubleVector
Visual C++
public:
property DoubleVector^ Distances {
	DoubleVector^ get ();
}

Remarks

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

See Also