Provide the hyperbolic sine values for various numbers.
System. |
The sinh()
method computes the hyperbolic sine of a number.
The hyperbolic sine can be calculated as (Math.exp(number) – Math.exp(-number)) / 2.
|
Parameter |
Description |
number |
“Necessary. A number for which the hyperbolic sine needs to be calculated.” |
Returns: |
“A double value indicating the hyperbolic sine of a number.” |
Java Version: |
1.5+ |