Determines if the given data point lies within the interval.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public bool IsIn(
	double x
)
Visual Basic (Declaration)
Public Function IsIn ( _
	x As Double _
) As Boolean
Visual C++
public:
bool IsIn(
	double x
)

Parameters

x
Type: System..::.Double
A data point to test.

Return Value

True if the point lies within the interval; otherwise, false.

See Also