Arithmetic functions
Arithmetic functions apply a mathematical operation to every sample value of the input vector, preserving all labels.
abs
Applies abs to every sample value of the input vector, preserving all labels. Absolute value of every sample.
ceil
Applies ceil to every sample value of the input vector, preserving all labels. Rounds every sample up to the nearest integer.
clamp_max
Applies clamp_max to every sample value of the input vector, preserving all labels. Limits every sample to a maximum.
clamp_min
Applies clamp_min to every sample value of the input vector, preserving all labels. Limits every sample to a minimum.
clamp
Applies clamp to every sample value of the input vector, preserving all labels. Limits every sample to a min–max range.
floor
Applies floor to every sample value of the input vector, preserving all labels. Rounds every sample down to the nearest integer.
ln
Applies ln to every sample value of the input vector, preserving all labels. Natural logarithm of every sample.
log10
Applies log10 to every sample value of the input vector, preserving all labels. Base-10 logarithm of every sample.
round
Applies round to every sample value of the input vector, preserving all labels. Rounds every sample to the nearest multiple.