jax.numpy.positive

Warning

This page was created from a pull request (#9655).

jax.numpy.positive¶

jax.numpy.positive(x)¶

Numerical positive, element-wise.

LAX-backend implementation of positive().

Original docstring below.

New in version 1.13.0.

Parameters

x (array_like or scalar) – Input array.

Returns

y – Returned array or scalar: y = +x. This is a scalar if x is a scalar.

Return type

ndarray or scalar