[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Return hyperbolic sine
Source position: math.pp line 366
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.