用法:np.multiply(x1,x2),作用:逐元素相乘,若x1和x2均为标量,则返回标量
x1=np.array([1,4,2]) x2=np.array([2,5,3]) np.multiply(x1,x2) Out[43]: array([ 2, 20, 6])