Compute the Hyperbolic arctangent of numeric data in R Programming - atanh() Function
atanh() function in R Language is used to compute the hyperbolic arctangent of numeric data. Syntax: atanh(x) Parameters: x: Numeric value, array or vector. Example 1: Python3 # R program to illustrate # atanh function # Calling atanh() function over # different numbers atanh(0) atanh(1) atanh(0.9)