mindspore.ops.Atanh

class mindspore.ops.Atanh[源代码]

逐元素计算输入Tensor的反双曲正切值。

更多细节请参考 mindspore.ops.atanh()

输入:
  • x (Tensor) - 输入Tensor。

输出:

Tensor,shape和数据类型与输入 x 相同。

支持平台:

Ascend GPU CPU

样例:

>>> import mindspore
>>> import numpy as np
>>> from mindspore import Tensor, ops
>>> x = Tensor(np.array([0, -0.5]), mindspore.float32)
>>> atanh = ops.Atanh()
>>> output = atanh(x)
>>> print(output)
[ 0.         -0.54930615]