atanh()
Table of Contents
Overview
The atanh() function returns the hyperbolic arctangent or inverse hyperbolic tangent (in radians) of a number.
Return Type
Syntax
<variable> = <number>.atanh();
(OR)
<variable> = atanh(<number>);
Parameter | Data type | Description |
---|---|---|
<variable> | NUMBER | Variable which will contain the returned hyperbolic arctangent. |
<number> | NUMBER | The number whose hyperbolic arctangent value will be returned. |
Examples
number= 0.7;
atanhValue = number.atanh(); // returns 0.8673005276940532
atanhValue = number.atanh(); // returns 0.8673005276940532