sinh()
Table of Contents
Overview
The sinh() function returns the hyperbolic sine of the specified angle (in radians).
Return Type
Syntax
<variable> = <number>.sinh();
(OR)
<variable> = sinh(<number>);
Parameter | Data type | Description |
---|---|---|
<variable> | NUMBER | Variable which will contain the returned value. |
<number> | NUMBER | The number whose hyperbolic sine value will be returned. |
Examples
number= 1;
sinhValue = number.sinh(); // returns 1.1752011936438014
sinhValue = number.sinh(); // returns 1.1752011936438014