Function multiply( array1, array2 )

Description:
Returns the result of multiplying two numeric arrays element by element. Both arrays must be numeric, and the arrays must have the same length. If either of those conditions is not true, null is returned. The types of the arrays do not need to be the same, so for example it is permitted to multiply an integer array by a floating point array.
Parameters:
array1 (Object)
first array of numeric values
array2 (Object)
second array of numeric values
Return Value (array of floating point):
element-by-element product of array1 and array2, the same length as the input arrays
Example:
multiply(array(1,2,3), array(2,4,6)) = [2, 8, 18]
Signature:
double[] multiply(Object, Object)