Cot(Value: Double): Double;
Cot(Value: double): double;
Value. Angle in radians, which cotangent must be found.
The Cot method returns the cotangent of the specified angle..
Value of the Value parameter cannot be empty or equal to 0.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var
r: Double;
Begin
r := Math.Cot(30);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the cotangent of the specified angle equal to 0.156119952161659.
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.Cot(30);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: