Midrange¶
Global Algorithm - One-Dimensional Algorithm
Midrange algorithm is computed from
m=max(Y)+min(Y)2,
where Y is the input data vector and m represents the midrange value. A selection algorithm is required to find the minimum, maximum values.
Input Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
Y | Y∈RN | N∈N | Input data vector of length N |
Output Parameters
Parameter | Type | Constraint | Description | Remarks |
---|---|---|---|---|
m | m∈R | Midrange value of Y |
Single Steps using the Algorithm