dpnp.positive

dpnp.positive(x, /, out=None, *, order='K', where=True, dtype=None, subok=True, **kwargs)[source]

Numerical positive, element-wise.

For full documentation refer to numpy.positive.

Returns:

out – The numerical positive of each element of x.

Return type:

dpnp.ndarray

Limitations

Parameters x is only supported as either dpnp.ndarray or dpctl.tensor.usm_ndarray. Parameters where, dtype and subok are supported with their default values. Keyword argument kwargs is currently unsupported. Otherwise the function will be executed sequentially on CPU. Input array data types are limited by supported DPNP Data types.

See also

dpnp.negative

Return the numerical negative of each element of x.

dpnp.copysign

Change the sign of x1 to that of x2, element-wise.

Note

Equivalent to x.copy(), but only defined for types that support arithmetic.

Examples

>>> import dpnp as np
>>> np.positive(np.array([1., -1.]))
array([ 1., -1.])

The + operator can be used as a shorthand for positive on dpnp.ndarray.

>>> x = np.array([1., -1.])
>>> +x
array([ 1., -1.])