numpy.add()

numpy.add

numpy.add(x1, x2[, out]) =

Add arguments element-wise.

Parameters:

x1, x2 : array_like

The arrays to be added. If x1.shape != x2.shape, they must be broadcastable to a common shape (which may be the shape of one or the other).

Returns:

add : ndarray or scalar

The sum of x1 and x2, element-wise. Returns a scalar if both x1 and x2 are scalars.

Notes

Equivalent to x1 + x2 in