Calculates the max value of all the elements in the input array, or the max value of every N successive elements in the input array.
Expression: MAX( arg1 )
arg1 | 11 | 7 | 3 | 5 | 6 | 1 |
Result: 11
(max by every 2 elements)
Expression: MAX( arg1; 2 )
arg1 | 11 | 7 | 3 | 5 | 6 | 1 |
result | 11 | 5 | 6 |
Windows Forms: All Examples\Data Manipulation\Functions\Average, Median, Min, Max