BivariateSampleContains Method (Double, Double) |
Determines whether the sample contains a given data point.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public bool Contains(
double x,
double y
)
Public Function Contains (
x As Double,
y As Double
) As Boolean
public:
bool Contains(
double x,
double y
)
member Contains :
x : float *
y : float -> bool
Parameters
- x
- Type: SystemDouble
The x-value of the data point. - y
- Type: SystemDouble
The y-value of the data point.
Return Value
Type:
BooleanTrue if the sample contains the given data point, otherwise false.
See Also