IMath.CotH

Syntax

CotH(Value: Double): Double;

Parameters

Value. Real number, which hyperbolic cotangent must be found.

Description

The CotH method returns the hyperbolic cotangent of the specified value.

Comments

Value of the Value parameter cannot be empty or equal to 0.

Example

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

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

After executing the example the console window displays the hyperbolic cotangent equal to 1.03731472072755.

See also:

IMath