Return hyperbolic cosine
Source position: math.pp line 365
function CosH( |
x: MaxFloatType |
):MaxFloatType; |
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.