IMath.ACotH

Fore Syntax

ACotH(Value: Double): Double;

Fore.NET Syntax

ACotH(Value: double): double;

Parameters

Value. Hyperbolic cotangent of angle.

Description

The ACotH method returns the hyperbolic arc cotangent of the specified value.

Comments

Parameter value cannot be empty and must belong to the (-inf;-1] U [1;inf) interval.

To get arccotangent of angle, use the IMath.ACot method.

Fore Example

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

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

After executing the example the console window displays the hyperbolic arccotangent equal to 0.168236118310606.

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

End Sub;

See also:

IMath