Math Functions
SUM(value1,… valueN?) - > number
Adds all the numbers in the arguments, which can be numbers or node references
SUBTRACT(value1,… valueN?) - > number
Subtracts all the values in the arguments, which can be numbers or node references
AVERAGE(value1,...valueN?) - > number
Returns the average (arithmetic mean) of its arguments, which can be numbers or node references
AVERAGEEXZERO(value1,...valueN?) - > number
Returns the average (arithmetic mean) of its arguments excluding zeros, which can be numbers or node references
AVERAGEEXNEG(value1,...valueN?) - > number
Returns the average (arithmetic mean) of its arguments excluding negatives, which can be numbers or node references
AVERAGEEXZERONEG (value1,...valueN?) - > number
Returns the average (arithmetic mean) of its arguments excluding zeros and negatives, which can be numbers or node references
MIN(value1,...valueN?) - > number
Returns the smallest number in a set of values. Node references are also accepted as arguments
MAX(value1,...valueN?) - > number
Returns the largest number in a set of values. Node references are also accepted as arguments
Last updated