numpy.subtract

原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.subtract.html

译者:飞龙 UsyiyiCN

校对:(虚位以待)

numpy.subtract(x1, x2[, out]) = <ufunc 'subtract'>

按元素方式减去参数。

参数:

x1,x2:array_like

要相互减去的数组。

返回:

y:ndarray

元素方面的x1x2的差异。如果x1x2都是标量,则返回标量。

笔记

等效于数组广播方面的x1 - x2

例子

>>> np.subtract(1.0, 4.0)
-3.0
>>> x1 = np.arange(9.0).reshape((3, 3))
>>> x2 = np.arange(3.0)
>>> np.subtract(x1, x2)
array([[ 0.,  0.,  0.],
       [ 3.,  3.,  3.],
       [ 6.,  6.,  6.]])