chainerx.log10

chainerx.log10(x)

Base 10 logarithm, element-wise.

Parameters

x (ndarray) – Input array.

Returns

Returned array: \(y = \log_{10} x\).

Return type

ndarray

Note

During backpropagation, this function propagates the gradient of the output array to the input array x.

See also

numpy.log10