ACotH(Value: Double): Double;
ACotH(Value: double): double;
Value. Hyperbolic cotangent of angle.
The ACotH method returns the hyperbolic arc cotangent of the specified value.
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.
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.
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: