Gets the permutation vector of the node labels of the leaves of the dendrogram corresponding the hierarchical cluster analysis. Labels are zero based. The permutation vector, p, is used to reorder the connectivity matrix as follows: if A is the original connectivity matrix and C is the ordered connectivity matrix then C[i,j] = A[p[i],p[j]].

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

Syntax

C#
public int[] PermutationVector { get; }
Visual Basic (Declaration)
Public ReadOnly Property PermutationVector As Integer()
Visual C++
public:
property array<int>^ PermutationVector {
	array<int>^ get ();
}

See Also