Constructs a vertical Dendrogram chart using supplied data.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public Dendrogram(
	AxisXY axis,
	double[] clusterLevel,
	int[] leftSons,
	int[] rightSons
)
Visual Basic (Declaration)
Public Sub New ( _
	axis As AxisXY, _
	clusterLevel As Double(), _
	leftSons As Integer(), _
	rightSons As Integer() _
)
Visual C++
public:
Dendrogram(
	AxisXY^ axis, 
	array<double>^ clusterLevel, 
	array<int>^ leftSons, 
	array<int>^ rightSons
)

Parameters

axis
Type: Imsl.Chart2D..::.AxisXY
An AxisXY specifying the parent of this node.
clusterLevel
Type: array< System..::.Double >[]()[]
A double[] which contains the levels at which the clusters are joined.
leftSons
Type: array< System..::.Int32 >[]()[]
An int[] which contains the left sons of each merged cluster.
rightSons
Type: array< System..::.Int32 >[]()[]
An int[] which contains the right sons of each merged cluster.

See Also