Contour Constructor (AxisXY, Double, Double, Double) |
Creates a Contour chart from scattered data with computed
contour levels.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Contour(
AxisXY axis,
double[] x,
double[] y,
double[] z
)
Public Sub New (
axis As AxisXY,
x As Double(),
y As Double(),
z As Double()
)
public:
Contour(
AxisXY^ axis,
array<double>^ x,
array<double>^ y,
array<double>^ z
)
new :
axis : AxisXY *
x : float[] *
y : float[] *
z : float[] -> Contour
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An AxisXY containing the parent node of this Contour.
- x
- Type: SystemDouble
A double[] which contains the x-values of the data points.
- y
- Type: SystemDouble
A double[] which contains the y-values of the data points.
- z
- Type: SystemDouble
A double[] which contains the x-values of the data points.
Remarks
The contour chart is created by using a radial basis approximation to
estimate the functions value on a rectangular grid. The contour chart
is then computed as for gridded data.
See Also