mindspore.numpy.arctanh
- mindspore.numpy.arctanh(x, dtype=None)[源代码]
逐元素计算反双曲正切。
说明
不支持NumPy参数 out 、 where 、 casting 、 order 、 subok 、 signature 、 extobj 。
- 参数:
x (Tensor) - 输入Tensor。
dtype (
mindspore.dtype
, 可选) - 默认值:None
。 覆盖输出Tensor的dtype。
- 返回:
Tensor或标量。 如果 x 是标量,则结果也是标量。
- 支持平台:
Ascend
CPU
样例:
>>> import mindspore.numpy as np >>> x = np.array([-0.99, -0.75, -0.5, 0, 0.5]).astype('float32') >>> print(np.arctanh(x)) [-2.646653 -0.97295505 -0.54930615 0. 0.54930615]