Return hyperbolic sine.
Source position: math.pp line 462
| function sinh( | 
| x: Single | 
| ):Single; | 
| x: Double | 
| ):Double; | 
| x: Extended | 
| ):Extended; | 
Sinh returns the hyperbolic sine of its argument x.
| 
 | Return hyperbolic cosine. | |
| 
 | Return inverse hyperbolic sine. | |
| 
 | Return hyperbolic tangent. | |
| 
 | Return inverse hyperbolic tangent. | 
Program Example42; { Program to demonstrate the sinh function. } Uses math; begin writeln(sinh(0)); writeln(sinh(1)); writeln(sinh(-1)); end.