Contour Constructor (AxisXY, Double, Double, Double) |
Creates a Contour chart from rectangularly gridded data with
computed contour levels.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public Contour(
AxisXY axis,
double[] xGrid,
double[] yGrid,
double[,] zData
)
Public Sub New (
axis As AxisXY,
xGrid As Double(),
yGrid As Double(),
zData As Double(,)
)
public:
Contour(
AxisXY^ axis,
array<double>^ xGrid,
array<double>^ yGrid,
array<double,2>^ zData
)
new :
axis : AxisXY *
xGrid : float[] *
yGrid : float[] *
zData : float[,] -> Contour
Parameters
- axis
- Type: Imsl.Chart2DAxisXY
An AxisXY containing the parent node of this Contour.
- xGrid
- Type: SystemDouble
A double[] which contains the x-coordinate values of the grid.
- yGrid
- Type: SystemDouble
A double[] which contains the y-coordinate values of the grid.
- zData
- Type: SystemDouble
A double[,] which contains the function values to be contoured.
Remarks
The contour levels are chosen to span the data and to be "nice"
values. The value of the function at (xGrid[i],
yGrid[j]) is given by zData[i][j]. The size of
zData must be xGrid.Length by
yGrid.Length.
See Also