jax.numpy.log

Contents

jax.numpy.log#

jax.numpy.log(x, /)#

Natural logarithm, element-wise.

LAX-backend implementation of numpy.log().

Original docstring below.

The natural logarithm log is the inverse of the exponential function, so that log(exp(x)) = x. The natural logarithm is logarithm in base e.

Parameters:

x (array_like) – Input value.

Returns:

y – The natural logarithm of x, element-wise. This is a scalar if x is a scalar.

Return type:

ndarray

References