[Overview][Constants][Types][Classes][Procedures and functions] | Reference for unit 'math' (#rtl) |
Return hyperbolic cosine
Source position: math.pp line 278
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.
No notes exist for this page yet.