mindspore.mint.atanh

View Source On Gitee
mindspore.mint.atanh(input)[source]

Computes inverse hyperbolic tangent of the input element-wise.

\[out_i = \tanh^{-1}(input_{i})\]
Parameters

input (Tensor) – The shape of tensor is \((N,*)\) where \(*\) means, any number of additional dimensions.

Returns

Tensor, has the same shape as input. The dtype of output is float32 when dtype of input is in [bool, int8, uint8, int16, int32, int64]. Otherwise output has the same dtype as input.

Raises

TypeError – If input is not a Tensor.

Supported Platforms:

Ascend

Examples

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