Skip to contents

Element-wise inverse hyperbolic sine. You can also use asinh().

Usage

nv_asinh(operand)

Arguments

operand

(arrayish)
Operand.

Value

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

See also

prim_asinh() for the underlying primitive.

Examples

x <- nv_array(c(-1, 0, 1))
asinh(x)
#> AnvlArray
#>  -0.8814
#>   0.0000
#>   0.8814
#> [ CPUf32{3} ]