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