原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.add.html
校对:(虚位以待)
numpy.
add
(x1, x2[, out]) = <ufunc 'add'>按元素添加参数。
参数: | x1,x2:array_like
|
---|---|
返回: | 添加:ndarray或标量
|
笔记
在数组广播方面等同于x1 + x2。
例子
>>> np.add(1.0, 4.0)
5.0
>>> x1 = np.arange(9.0).reshape((3, 3))
>>> x2 = np.arange(3.0)
>>> np.add(x1, x2)
array([[ 0., 2., 4.],
[ 3., 5., 7.],
[ 6., 8., 10.]])