Skip to contents

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

Usage

nv_sinh(operand)

Arguments

operand

(arrayish)
Operand.

Value

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

See also

prim_sinh() for the underlying primitive.

Examples

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