Skip to contents

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

Usage

nv_asin(operand)

Arguments

operand

(arrayish)
Operand.

Value

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

See also

prim_asin() for the underlying primitive.

Examples

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