The numpy.multiply documentation says:
Equivalent to x1 * x2 in terms of array broadcasting.
Is np.multiply(x1, x2)
different to x1 * x2
in any circumstance?
Where would I find the implementations of each?
Note: An analogous question exists for division but it doesn't mention multiplication, nor imply that the the answer would be the same in the multiplicative case.
This question also asks for implementation details specific to multiplication.