torch_atanh: Atanh

View source: R/gen-namespace.R

torch_atanhR Documentation

Atanh

Description

Atanh

Usage

torch_atanh(self)

Arguments

self

(Tensor) the input tensor.

atanh(input, *, out=None) -> Tensor

Returns a new tensor with the inverse hyperbolic tangent of the elements of input.

Note

The domain of the inverse hyperbolic tangent is ⁠(-1, 1)⁠ and values outside this range will be mapped to NaN, except for the values 1 and -1 for which the output is mapped to ⁠+/-INF⁠ respectively.

\mbox{out}_{i} = \tanh^{-1}(\mbox{input}_{i})

Examples

if (torch_is_installed()) {

a = torch_randn(c(4))$uniform_(-1, 1)
a
torch_atanh(a)
}

torch documentation built on June 7, 2023, 6:19 p.m.