IMSL C# Numerical Library

Contour.GetContourLevel Method (Int32)

Returns a specified ContourLevel.

public virtual ContourLevel GetContourLevel(
   int k
);

Parameters

k
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

Contour Class | Imsl.Chart2D Namespace | Contour.GetContourLevel Overload List