sinh function

VARP sinh(
  1. VARP x
)

Computes sinh of x element-wise.

Args:

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

Note: The output of atan will lie within the invertible range of tan, i.e (0.0, pi).

Returns:

  • A variable. Has the same type as x.

Implementation

VARP sinh(VARP x) => VARP.fromPointer(C.mnn_expr_Sinh(x.ptr));