This is documentation for an old release of NumPy (version 1.7.0). Read this page in the documentation of the latest stable release (version > 1.17).
Returns an array with the negative of each element of the original array.
Parameters : | x : array_like or scalar
|
---|---|
Returns : | y : ndarray or scalar
|
Examples
>>> np.negative([1.,-1.])
array([-1., 1.])