Previous ION Java User's Guide: ION Java Class and Method Reference Next

IONContour() / IONJContour()

The IONContour() method constructs an object of the IONContour class. The IONJContour method constructs an object of the IONJContour class.

Syntax


Note
The following is the syntax for the IONContour() method. For the IONJContour() method, replace IONContour with IONJContour.

public IONContour(int iWidth, int iHeight)

public IONContour(int iWidth, int iHeight, int Z[][])

public IONContour(int iWidth, int iHeight, float Z[][])

public IONContour(int iWidth, int iHeight, double Z[][])

public IONContour(int iWidth, int iHeight, int Z[])

public IONContour(int iWidth, int iHeight, float Z[])

public IONContour(int iWidth, int iHeight, double Z[])

public IONContour(int iWidth, int iHeight, String sName)

public IONContour(int iWidth, int iHeight, int Z[][], int X[], int Y[])

public IONContour(int iWidth, int iHeight, float Z[][], float X[], float Y[])

public IONContour(int iWidth, int iHeight, double Z[][], double X[], double Y[])

public IONContour(int iWidth, int iHeight, int Z[], int X[], int Y[])

public IONContour(int iWidth, int iHeight, float Z[], float X[], float Y[])

public IONContour(int iWidth, int iHeight, double Z[], double X[], double Y[])

public IONContour(int iWidth, int iHeight, String sZName, String sXName, String    sYName)

Arguments

iWidth

The width of the plot in pixels.

iHeight

The height of the plot in pixels.

Z

The Z values (data) to use in the contour.

sName, sZName

The name of the IDL variable to use for the Z (data) values of the contour.

X

An array holding the values for the X coordinates of the grid.

Y

An array holding the values for the Y coordinates of the grid.

sXName

The name of the IDL variable holding the values for the X coordinates of the grid.

sYName

The name of the IDL variable holding the values for the Y coordinates of the grid.

Exceptions

None.

  IDL Online Help (March 06, 2007)