Choose where you’d like to start

atanh()

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>);
ParameterData typeDescription
<variable>NUMBERVariable which will contain the returned hyperbolic arctangent.
<number>NUMBERThe number whose hyperbolic arctangent value will be returned.

Examples

number= 0.7;
atanhValue = number.atanh();       // returns 0.8673005276940532

Get Started Now

Execute