IMSL C# Numerical Library

Contour Constructor (AxisXY, Double[], Double[], Double[])

Creates a Contour chart from scattered data with computed contour levels.

public Contour(
   AxisXY axis,
   double[] x,
   double[] y,
   double[] z
);

Parameters

axis
An AxisXY containing the parent node of this Contour.
x
A double[] which contains the x-values of the data points.
y
A double[] which contains the y-values of the data points.
z
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

Contour Class | Imsl.Chart2D Namespace | Contour Constructor Overload List | RadialBasis