Returns a NumericalVariable whose observations are the minimum
of a range of observations of the variable.
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Function GetMovingMinimum ( _ length As Integer _ ) As NumericalVariable |
| C# |
|---|
public NumericalVariable GetMovingMinimum ( int length ) |
| C++ |
|---|
public: NumericalVariable^ GetMovingMinimum ( int length ) |
Parameters
- length (System.Int32)
- The number of observations in the range.
Return Value
A NumericalVariable.
Remarks
If length is equal to 1, this method returns the original variable.
The new variable gets the name max<length>(<name>), where <name> is the name of the original variable.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | length is less than or equal to zero. |