This pull request adds an element-wise multiply function like numpy.multiply.
Same as numpy.multiply, the function computes the product of arguments x1 and x2, element-wise.
The result is a scalar if both arguments are scalars.
if x1.shape() != x2.shape(), the function computes the element-wise product with broadcasting.
This pull request adds an element-wise multiply function like numpy.multiply. Same as numpy.multiply, the function computes the product of arguments
x1
andx2
, element-wise. The result is a scalar if both arguments are scalars. ifx1.shape() != x2.shape()
, the function computes the element-wise product with broadcasting.