Returns a specified ContourLevel.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual ContourLevel GetContourLevel(
	int k
)
Visual Basic (Declaration)
Public Overridable Function GetContourLevel ( _
	k As Integer _
) As ContourLevel
Visual C++
public:
virtual ContourLevel^ GetContourLevel(
	int k
)

Parameters

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

Return Value

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