Skip to contents

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

Usage

nv_sinh(x)

Arguments

x

(arrayish)
Input array.

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} ]