IMath.CotH

Fore Syntax

CotH(Value: Double): Double;

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

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

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.CotH(2);
    System.Diagnostics.Debug.WriteLine(r);
End Sub;

See also:

IMath