numpy.negative
- 
numpy.negative(x[, out]) =
- 
Numerical negative, element-wise. Parameters: x : array_like or scalar Input array. Returns: y : ndarray or scalar Returned array or scalar: y = -x.Examples>>> np.negative([1.,-1.]) array([-1., 1.]) 
    © 2008–2016 NumPy Developers
Licensed under the NumPy License.
    https://docs.scipy.org/doc/numpy-1.11.0/reference/generated/numpy.negative.html