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.
See also: