negative¶
- negative(x: array, /) array ¶
Computes the numerical negative of each element
x_i
(i.e.,y_i = -x_i
) of the input arrayx
.Note
For signed integer data types, the numerical negative of the minimum representable integer is implementation-dependent.
- Parameters:
x (array) – input array. Should have a numeric data type.
- Returns:
out (array) – an array containing the evaluated result for each element in
x
. The returned array must have a data type determined by Type Promotion Rules.