[Overview][Constants][Types][Classes][Procedures and functions] | Reference for unit 'math' (#rtl) |
Return inverse hyperbolic sine
Source position: math.pp line 290
function arsinh( |
x: float |
):float; |
arsinh returns the inverse hyperbolic sine of its argument x. The arscsinh variant of this function is supplied for Delphi compatibility.
None.
|
Return inverse hyperbolic cosine |
|
|
Return inverse cosine |
|
|
Return inverse sine |
|
|
Return inverse hyperbolic tangent |
Program Example4; { Program to demonstrate the arsinh function. } Uses math; begin Writeln(arsinh(0)); Writeln(arsinh(1)); end.
No notes exist for this page yet.