Skip to contents

Element-wise inverse hyperbolic tangent. You can also use atanh().

Usage

nv_atanh(operand)

Arguments

operand

(arrayish)
Operand.

Value

arrayish
Has the same shape and data type as the input.

See also

prim_atanh() for the underlying primitive.

Examples

x <- nv_array(c(-0.5, 0, 0.5))
atanh(x)
#> AnvlArray
#>  -0.5493
#>   0.0000
#>   0.5493
#> [ CPUf32{3} ]