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_uint16 - is the Argmax variant resulting in a uint16 data item
- argmax_uint8 - is the Argmax variant resulting in a uint8 data item
- argmax_alldefined_uint16 - is the argmax_alldefined variant resulting in a uint16 data item
- argmax_alldefined_uint8 - is the argmax_alldefined variant resulting in a uint8 data item
- argmax_ifdefined_uint16 - is the argmax_ifdefined variant resulting in a uint16 data item
- argmax_ifdefined_uint8 - is the argmax_ifdefined variant resulting in a uint8 data item
- 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_uint16 - is the Argmin variant resulting in a uint16 data item
- argmin_uint8 - is the Argmin variant resulting in a uint8 data item
- argmin_alldefined_uint16 - is the argmin_alldefined variant resulting in a uint16 data item
- argmin_alldefined_uint8 - is the argmin_alldefined variant resulting in a uint8 data item
- argmin_ifdefined_uint16 - is the argmin_ifdefined variant resulting in a uint16 data item
- argmin_ifdefined_uint8 - is the argmin_ifdefined variant resulting in a uint8 data item
- argmin_fast - Argmin without null-checking (use only on fully defined data)
- argmax_fast - Argmax without null-checking (use only on fully defined data)
- min_elem_fast - Min_elem without null-checking (use only on fully defined data)
- max_elem_fast - Max_elem without null-checking (use only on fully defined data)
- 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 value 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