Differences Between: [Versions 400 and 403]
(no description)
File Size: | 82 lines (3 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
DELTA($a, $b = 0.0) X-Ref |
DELTA. Excel Function: DELTA(a[,b]) Tests whether two values are equal. Returns 1 if number1 = number2; returns 0 otherwise. Use this function to filter a set of values. For example, by summing several DELTA functions you calculate the count of equal pairs. This function is also known as the Kronecker Delta function. param: array|float $a the first number param: array|float $b The second number. If omitted, b is assumed to be zero. return: array|int|string (string in the event of an error) |
GESTEP($number, $step = 0.0) X-Ref |
GESTEP. Excel Function: GESTEP(number[,step]) Returns 1 if number >= step; returns 0 (zero) otherwise Use this function to filter a set of values. For example, by summing several GESTEP functions you calculate the count of values that exceed a threshold. param: array|float $number the value to test against step param: null|array|float $step The threshold value. If you omit a value for step, GESTEP uses zero. return: array|int|string (string in the event of an error) |