acosh()
Table of Contents
Overview
The acosh() function returns the hyperbolic arccosine or inverse hyperbolic cosine (in radians) of a number.
Return Type
Syntax
<variable> = <number>.acosh();
(OR)
<variable> = acosh(<number>);
Parameter | Data type | Description |
---|---|---|
<variable> | NUMBER | Variable which will contain the returned hyperbolic arccosine. |
<number> | NUMBER | The number whose hyperbolic arccosine value will be returned. |
Examples
number= 3;
asinhValue = number.acosh(); // returns 1.762747174039086
asinhValue = number.acosh(); // returns 1.762747174039086