Data Constructor (ChartNode, Double) |
Creates a Data node with y values.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Data(
ChartNode parent,
double[] y
)
Public Sub New (
parent As ChartNode,
y As Double()
)
public:
Data(
ChartNode^ parent,
array<double>^ y
)
new :
parent : ChartNode *
y : float[] -> Data
Parameters
- parent
- Type: Imsl.Chart2DChartNode
A ChartNode which specifies the parent of this data node.
- y
- Type: SystemDouble
A double array containing the dependant values for this node.
Remarks
The x values are set to the double array containing
{0,1,...,y.Length-1}.
See Also