Creates a Data node with y values.

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

Syntax

C#
public Data(
	ChartNode parent,
	ChartFunction cf,
	double a,
	double b
)
Visual Basic (Declaration)
Public Sub New ( _
	parent As ChartNode, _
	cf As ChartFunction, _
	a As Double, _
	b As Double _
)
Visual C++
public:
Data(
	ChartNode^ parent, 
	ChartFunction^ cf, 
	double a, 
	double b
)

Parameters

parent
Type: Imsl.Chart2D..::.ChartNode
A ChartNode which specifies the parent of this data node.
cf
Type: Imsl.Chart2D..::.ChartFunction
A ChartFunction that defines the function to be plotted.
a
Type: System..::.Double
A double that contains the left endpoint.
b
Type: System..::.Double
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