atanh function
Computes atanh of x element-wise.
Args:
- x: A variable. Must be one of the following types: Halide_Type_Int or Halide_Type_Float
Note: The input of atanh will lie within (-1, 1). The output of atan will lie within (-inf, +inf).
Returns:
- A variable. Has the same type as x.
Implementation
VARP atanh(VARP x) => VARP.fromPointer(C.mnn_expr_Atanh(x.ptr));