ACot(Value: Double): Double;
Value. Angle cotangent.
The ACot method returns the arccotangent of value.
Parameter value cannot be empty.
To get the angle cotangent, use the IMath.Cot method.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.ACot(2);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the arccotangent of the specified angle equal to 0.463647609000806.
See also: