[Overview][Constants][Types][Classes][Procedures and functions] | Reference for unit 'math' (#rtl) |
Return hyperbolic tangent
Source position: math.pp line 280
function tanh( |
x: float |
):float; |
Tanh returns the hyperbolic tangent of x.
None.
|
Return inverse sine |
|
|
Return sine and cosine of argument |
|
|
Return inverse cosine |
Program Example48; { Program to demonstrate the Tanh function. } Uses math; begin writeln(tanh(0)); writeln(tanh(1)); writeln(tanh(-1)); end.
No notes exist for this page yet.