In This Topic
Syntax
LOW(arg1; arg2 [; arg3] ...)
Arguments
Accepts two or more arguments, which may be either single values or arrays.
Result
If all the arguments are single values, the result is a single value.
If there is at least one array-argument, the result is an array. The size of the result is equal to the size of the input array.
If there is more than one array-argument, the size of the result is equal to the size of the smallest array-argument.
Description
Each element of the result is equal to the lowest of the corresponding elements of the input arguments.
Example 1:
Expression: LOW(arg1; 5)
arg1 |
5.8 |
3.2 |
1.0 |
6.9 |
1.7 |
result |
5 |
3.2 |
1.0 |
5 |
1.7 |
Example 2:
Expression: LOW(arg1; arg2)
arg1 |
5.8 |
3.2 |
1 |
6.9 |
1.7 |
arg2 |
12 |
0 |
3.1 |
3.1 |
2.0 |
result |
5.8 |
0 |
1 |
3.1 |
1.7 |
Related Examples
Windows Forms: All Examples\Data Manipulation\Functions\Statistical\Basic Functions