Finds the index of the lower bound of the interval that contains the specfied value.

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function IndexOf ( _
	x As Double _
) As Integer
C#
public int IndexOf (
	double x
)
C++
public:
int IndexOf (
	double x
)

Parameters

x (System.Double)
A real number.

Return Value

A number in the range -1 to NumberOfIntervals.

Remarks

If x is less than the lower bound of the first interval, the value -1 is returned. If x is greater than or equal to the upper bound of the last interval, the value NumberOfIntervals is returned. In all other cases, the value returned is the index of the interval whose lower bound is less than or equal to x, and whose upper bound is strictly greater than x.