原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.subtract.html
校对:(虚位以待)
numpy.
subtract
(x1, x2[, out]) = <ufunc 'subtract'>按元素方式减去参数。
参数: | x1,x2:array_like
|
---|---|
返回: | y:ndarray
|
笔记
等效于数组广播方面的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.]])