| [Overview][Constants][Types][Classes][Procedures and functions][Index] | 
Return hyperbolic cosine
Source position: math.pp line 325
| function cosh( | 
| x: Float | 
| ):Float; | 
Cosh returns the hyperbolic cosine of it's argument {x}.
None.
| 
 | Return inverse hyperbolic cosine | |
| 
 | Return hyperbolic sine | |
| 
 | Return inverse hyperbolic sine | 
Program Example8; { Program to demonstrate the cosh function. } Uses math; begin Writeln(Cosh(0)); Writeln(Cosh(1)); end.