Chart for .NET > User's Guide > Data Manipulation > Functions > Math Functions > High |
Each element of the result is equal to the highest of the corresponding elements of the input arguments.
Expression: HIGH(arg1; 5.0)
arg1 | 5.8 | 3.2 | 1.0 | 6.9 | 1.7 |
result | 5.8 | 5.0 | 5.0 | 6.9 | 5.0 |
Expression: HIGH(arg1; arg2)
arg1 | 5.8 | 3.2 | 1.0 | 6.9 | 1.7 |
arg2 | 12 | 0 | 3.1 | 3.1 | 2.0 |
result | 12 | 3.2 | 3.1 | 6.9 | 2.0 |