Click or drag to resize
ContourGetContourLevel Method (Int32)
Returns a specified ContourLevel.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public virtual ContourLevel GetContourLevel(
	int k
)

Parameters

k
Type: SystemInt32
An int which indicates what ContourLevel to return.

Return Value

Type: ContourLevel
A ContourLevel that corrisponds to the k-th level (cLevel[k]).
Remarks

The k-th contour level contains the level curve equal to cLevel[k] in the constructor. It also contains the fill areas for the values in the interval (cLevel[k-1], cLevel[k]).

The first contour level (k=0) contains the fill area for values less than cLevel[0] and the level curves lines where the function value equals cLevel[0].

The last contour level (k=cLevel.Length) contains the fill area for values greater than cLevel[cLevel.length-1], but no level curve lines.

See Also