ArSinH
Return inverse hyperbolic sine
Declaration
Source position: math.pp line 377
function ArSinH(x: Float) : Float;
Description
arsinh returns the inverse hyperbolic sine of its argument x. The arscsinh variant of this function is supplied for Delphi compatibility.
Errors
None.
See also
Name | Description |
---|---|
arccos | Return inverse cosine |
arcosh | Return inverse hyperbolic cosine |
arcsin | Return inverse sine |
artanh | Return inverse hyperbolic tangent |
Example
Program Example4;
{ Program to demonstrate the arsinh function. }
Uses math;
begin
Writeln(arsinh(0));
Writeln(arsinh(1));
end.