Ordering functions
Ordering functions are used to compare or order data items:
- equals (==)
- equals or both values null
- float_isnearby
- less than (<)
- less than or left side has null values
- less than or equals to (<=)
- less than or equals to or left side has null values
- greater than (>)
- greater than or right side has null values
- greater than or equals to (>=)
- greater than or equal to or right side has null values
- not equals (<>)
- not equals or one side has null values
- argmax - the order number of the argument with the highest value
- argmax_uint8_16 - versions of the argmax function resulting in a uint8/16 data item
- argmax_alldefined - variant of the argmax with defined values for all defined arguments
- argmax_alldefined_uint8_16 - versions of the argmax_alldefined function resulting in a uint8/16 data item
- argmax_ifdefined - variant of the argmax with defined values for any defined arguments
- argmax_ifdefined_uint8_16 - versions of the argmax_ifdefined function resulting in a uint8/16 data item
- argmin - the order number of the argument with the lowest value
- argmin_uint8_16 - versions of the argmin function resulting in a uint8/16 data item
- argmin_alldefined - variant of the argmin with defined values for all defined arguments
- argmin_alldefined_uint8_16 - versions of the argmin_alldefined function resulting in a uint8/16 data item
- argmin_ifdefined - variant of the argmin with defined values for any defined arguments
- argmin_ifdefined_uint8_16 - versions of the argmin_ifdefined function resulting in a uint8/16 data item
- max_elem - the highest value of the arguments
- max_elem_alldefined - variant of the max_elem with defined values for all defined arguments
- max_elem_ifdefined - variant of the max_elem with defined values for any defined arguments
- min_elem - the lowest values of the arguments
- min_elem_alldefined - variant of the min_elem with defined values for all defined arguments
- min_elem_ifdefined - variant of the min_elem with defined values for any defined arguments
See also: aggregation-functions for min and max