Functions Index :: A :: ArrayProduct
Module:
Definition:
ArrayProduct(string array)
Description:
Returns the product of all array elements.
Examples:
a1 = "1,2,-3,4,-2,5"
pr = a1.ArrayProduct() # pr == 240
a2 = "0.1,0.2,-3.5,4,-2.0,5.2"
pf = a2.ArrayProduct() # pf == 2.912