IMath.ASinH

Syntax

ASinH(Value: Double): Double;

Parameters

Value. Hyperbolic sine of angle.

Description

The ASinH method returns hyperbolic arcsine of the specified number.

Comments

Parameter value cannot be empty.

To get hyperbolic angle sine, use the IMath.SinH method.

Example

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:

IMath