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