math.atanh

Full name
math.atanh
Library
math
Syntax

math.atanh(x)

Description

The math.atanh function returns the hyperbolic arctangent of the number passed as an argument.

The hyperbolic arctangent function has the following graph:

math.atanh
Parameters
  • x: Number from which to obtain the hyperbolic arctangent.
Result

The math.atanh function returns a real number.

Examples

We can obtain the hyperbolic arctangent of the number 0.5 with the following code:

math.atanh(0.5)
0.5493061443340549
Submitted by admin on Sat, 02/13/2021 - 09:07