positive

positive(x: array, /) array

Computes the numerical positive of each element x_i (i.e., y_i = +x_i) of the input array x.

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 the same data type as x.

Notes

Changed in version 2022.12: Added complex data type support.