Computes the hyperbolic sine of the input.
Usage | Returns | Number.sinh() | Number |
Argument | Type | Details | this: input | Number | The input value. |
Examples
Code Editor (JavaScript)
// Input angle in radians.
print('Hyperbolic sine of -5', ee.Number(-5).sinh()); // -74.203210577
print('Hyperbolic sine of -1', ee.Number(-1).sinh()); // -1.175201193
print('Hyperbolic sine of 0', ee.Number(0).sinh()); // 0
print('Hyperbolic sine of 1', ee.Number(1).sinh()); // 1.175201193
print('Hyperbolic sine of 5', ee.Number(5).sinh()); // 74.203210577
// Convert degrees to radians.
var degrees = 45;
var radians = degrees * (Math.PI/180);
print('Hyperbolic sine of 45 degrees',
ee.Number(radians).sinh()); // 0.868670961