Data Constructor (ChartNode, ChartFunction, Double, 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,
ChartFunction cf,
double a,
double b
)
Public Sub New (
parent As ChartNode,
cf As ChartFunction,
a As Double,
b As Double
)
public:
Data(
ChartNode^ parent,
ChartFunction^ cf,
double a,
double b
)
new :
parent : ChartNode *
cf : ChartFunction *
a : float *
b : float -> Data
Parameters
- parent
- Type: Imsl.Chart2DChartNode
A ChartNode which specifies the parent of this data node.
- cf
- Type: Imsl.Chart2DChartFunction
A ChartFunction that defines the function to be plotted.
- a
- Type: SystemDouble
A double that contains the left endpoint.
- b
- Type: SystemDouble
A double that contains the right endpoint.
Remarks
The x values are set to the double array containing
{0,1,...,y.Length-1}.
See Also