 | IntervalIsIn Method |
Determines if the given data point lies within the interval.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic bool IsIn(
double x
)
Public Function IsIn (
x As Double
) As Boolean
public:
bool IsIn(
double x
)
member IsIn :
x : float -> bool
Parameters
- x
- Type: SystemDouble
A data point to test.
Return Value
Type:
BooleanTrue if the point lies within the interval; otherwise,
false.
See Also