|
  
prod
Format: prod( list )
prod( x1, x2, ... )
Arguments: [num] list Input list
(num) x1, x2, ... Input numbers; may include real and
complex numbers
Returns: (num) The numeric product of all elements in list
if only one argument is supplied, the product of all arguments if
more than one argument is supplied
Examples: prod([2,3,2,-1]) =
-12
prod(2,3,2,-1) = -12
prod([2,3,2+8*I,-1]) = -12-48i
prod(x) = product of all
elements in the list named x
See Also: count, sum, avg,
std, variance, max, min,
med
|