IMath.ASinH

Fore Syntax

ASinH(Value: Double): Double;

Fore.NET 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.

Fore 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.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore example.

Imports Prognoz.Platform.Interop.MathFin;

Public Shared Sub Main(Params: StartParams);
Var
    r: double;
    Math: MathClass = New MathClass();
Begin
    r := Math.ASinH(-2.5);
    System.Diagnostics.Debug.WriteLine(r);

End Sub;

See also:

IMath