mindspore.numpy.cbrt
- mindspore.numpy.cbrt(x, dtype=None)[源代码]
返回Tensor的立方根,逐元素计算。
说明
不支持NumPy参数 casting 、 order 、 subok 、 signature 、 extobj 。
- 参数:
x (Tensor) - 输入Tensor。
dtype (mindspore.dtype, 可选) - 默认值:
None
。 覆盖输出Tensor的dtype。
- 返回:
Tensor。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> import mindspore.numpy as np >>> a = np.asarray([1, -1, 3, -8, 64]) >>> output = np.cbrt(a) >>> print(output) [ 1. -1. 1.4422495 -2. 4. ]