dpnp.log10
- dpnp.log10(x1)[source]
Trigonometric logarithm, element-wise.
For full documentation refer to
numpy.log10
.Limitations
Input array is supported as
dpnp.ndarray
. Input array data types are limited by supported DPNP Data types.Examples
>>> import dpnp as np >>> x = np.arange(3.) >>> out = np.log10(x) >>> [i for i in out] [-inf, 0.0, 0.30102999566]