numpy.subtract¶
-
numpy.
subtract
(x1, x2[, out]) = <ufunc 'subtract'>¶ 按元素方式减去参数。
参数: x1,x2:array_like
要相互减去的数组。
返回: y:ndarray
元素方面的x1和x2的差异。如果x1和x2都是标量,则返回标量。
笔记
等效于数组广播方面的
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.]])