IMath.ACosH

Fore Syntax

ACosH(Value: Double): Double;

Fore.NET Syntax

ACosH(Value: double): double;

Parameters

Value. Hyperbolic cosine of angle.

Description

The ACosH method returns the hyperbolic arccosine of the specified number.

Comments

The Value parameter value cannot be empty and must be greater than 1.

Fore Example

To execute the example, add a link to the MathFin system assembly.

Sub UserProc;
Var
    r: Double;
Begin
    r := Math.ACosH(10);
    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the hyperbolic arccosine equal to 2.99322284612638.

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.
ACosH(10);
    System.Diagnostics.Debug.WriteLine(r);

End Sub;

See also:

IMath