Return inverse hyperbolic sine.
Source position: math.pp line 519
| 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.