asin function

VARP asin(
  1. VARP x
)

Computes the trignometric inverse sine of x element-wise.

The asin operation returns the inverse of sin, such that if y = sin(x) then, x = asin(y).

Note: The output of asin will lie within the invertible range of sine, i.e -pi/2, pi/2.

Args:

  • x: A variable. Must be one of the following types: Halide_Type_Int or Halide_Type_Float

Returns:

  • A variable. Has the same type as x.

Implementation

VARP asin(VARP x) => VARP.fromPointer(C.mnn_expr_Asin(x.ptr));