IMath.ACotH

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.

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.

See also:

IMath