Returns an array with the negative of each element of the original array.
x : {array_like, scalar}
Input array.
y : {ndarray, scalar}
Returned array or scalar y=-x.
Examples
>>> np.negative([1.,-1.]) array([-1., 1.])
numpy.reciprocal
numpy.multiply
Enter search terms or a module, class or function name.