Removes the first occurrence of a specific observation from the variable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function Remove ( _
item As T _
) As Boolean |
| C# |
|---|
public bool Remove (
T item
) |
| C++ |
|---|
public:
virtual bool Remove (
T item
) sealed |
Parameters
- item ()
- The observation to remove from the NumericalVariable.
Return Value
true if
item was successfully removed from the varibable;
otherwise, false. This method also returns false if
item
is not found in the original variable.
Exceptions