Hi All,
How do i find the abs MAX value of a list.? (ie MAX(ABS(list[-4,-2,1,3))) would return 4
Thanks
Hi All,
How do i find the abs MAX value of a list.? (ie MAX(ABS(list[-4,-2,1,3))) would return 4
Thanks
Using the ExpressionEvaluator transformer:
Results in the value 4.
Using the ExpressionEvaluator transformer:
Results in the value 4.
get the max and min using the range extractor then get the max of the max and abs(min)
Thanks Again
Steve
Using a list this is the better way:
Sort the list and use the first (0) and last (_element_count) to do the calculation.