mindspore.ops.Atanh

class mindspore.ops.Atanh[源代码]

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

Warning

实验性算子,将来有可能更改或删除。

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

支持平台:

Ascend CPU

样例:

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