Returns a Filter that selects all observations greater than or equal to the specified value.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function GreaterThanOrEqualTo ( _ value As Object _ ) As Filter |
| C# |
|---|
public Filter GreaterThanOrEqualTo ( Object value ) |
| C++ |
|---|
public: Filter^ GreaterThanOrEqualTo ( Object^ value ) |
Parameters
- value (System.Object)
- A Object value.
Return Value
A Filter that selects all observations greater than or equal to value.
Exceptions
| Exception | Condition |
|---|---|
| InvalidOperationException | The variable's Scale is not ordered. |
| ArgumentOutOfRangeException | value is not a valid value for an observation. |