ASinH(Value: Double): Double;
Value. Hyperbolic sine of angle.
The ASinH method returns hyperbolic arcsine of the specified number.
Parameter value cannot be empty.
To get hyperbolic angle sine, use the IMath.SinH method.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.ASinH(-2.5);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the hyperbolic arcsine equal to -1.6472311463711.
See also: