SciPy

This is documentation for an old release of SciPy (version 1.5.3). Read this page in the documentation of the latest stable release (version 1.15.1).

scipy.special.exp10

scipy.special.exp10(x) = <ufunc 'exp10'>

Compute 10**x element-wise.

Parameters
xarray_like

x must contain real numbers.

Returns
float

10**x, computed element-wise.

Examples

>>>
>>> from scipy.special import exp10
>>>
>>> exp10(3)
1000.0
>>> x = np.array([[-1, -0.5, 0], [0.5, 1, 1.5]])
>>> exp10(x)
array([[  0.1       ,   0.31622777,   1.        ],
       [  3.16227766,  10.        ,  31.6227766 ]])

Previous topic

scipy.special.cbrt

Next topic

scipy.special.exp2