IntervalContains Method (Double) |
Determines whether a given point is contained in the closed interval.
Namespace:
Meta.Numerics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public bool Contains(
double x
)
Public Function Contains (
x As Double
) As Boolean
public:
bool Contains(
double x
)
member Contains :
x : float -> bool
Parameters
- x
- Type: SystemDouble
The point.
Return Value
Type:
Boolean if
x is contained in the closed interval [a,b],
otherwise
.
See Also