scipy.special.cbrt#

scipy.special.cbrt(x, out=None) = <ufunc 'cbrt'>#

x 的按元素立方根。

参数:
xarray_like

x 必须包含实数。

outndarray, 可选

函数值的可选输出数组

返回值:
标量或 ndarray

x 中每个值的立方根。

示例

>>> from scipy.special import cbrt
>>> cbrt(8)
2.0
>>> cbrt([-8, -3, 0.125, 1.331])
array([-2.        , -1.44224957,  0.5       ,  1.1       ])