mindspore.ops.Atanh
- class mindspore.ops.Atanh[源代码]
逐元素计算输入Tensor的反双曲正切值。
更多细节请参考
mindspore.ops.atanh()
。- 输入:
x (Tensor) - 输入Tensor,shape: \((N,*)\) ,其中 \(*\) 表示任何数量的附加维度。其轶应小于8。数据类型可为以下类型:float16或float32。
- 输出:
Tensor,shape和数据类型与输入 x 相同。
- 支持平台:
Ascend
GPU
CPU
样例:
>>> x = Tensor(np.array([0, -0.5]), mindspore.float32) >>> atanh = ops.Atanh() >>> output = atanh(x) >>> print(output) [ 0. -0.54930615]