BivariateSampleRemove Method (Double, Double) |
Removes a data point from the sample.
Namespace:
Meta.Numerics.Statistics
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public bool Remove(
double x,
double y
)
Public Function Remove (
x As Double,
y As Double
) As Boolean
public:
bool Remove(
double x,
double y
)
member Remove :
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 given data point was found and removed, otherwise false.
See Also