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