Dendrogram Constructor (AxisXY, Double, Int32, Int32) |
Constructs a vertical Dendrogram chart using supplied data.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Dendrogram(
AxisXY axis,
double[] clusterLevel,
int[] leftSons,
int[] rightSons
)
Public Sub New (
axis As AxisXY,
clusterLevel As Double(),
leftSons As Integer(),
rightSons As Integer()
)
public:
Dendrogram(
AxisXY^ axis,
array<double>^ clusterLevel,
array<int>^ leftSons,
array<int>^ rightSons
)
new :
axis : AxisXY *
clusterLevel : float[] *
leftSons : int[] *
rightSons : int[] -> Dendrogram
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An AxisXY specifying the parent of this node.
- clusterLevel
- Type: SystemDouble
A double[] which contains the levels at which the clusters are
joined.
- leftSons
- Type: SystemInt32
An int[] which contains the left sons of each merged cluster.
- rightSons
- Type: SystemInt32
An int[] which contains the right sons of each merged cluster.
See Also