Return hyperbolic cosine.
Source position: math.pp line 451
function cosh( |
x: Single |
):Single; |
x: Double |
):Double; |
x: Extended |
):Extended; |
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.