ATan(Value: Double): Double;
ATan(Value: double): double;
Value. Angle tangent.
The ATan method returns the arctangent of a number.
Parameter value cannot be empty.
To get angle tangent, use the IMath.Tan method.
To execute the example, add a link to the MathFin system assembly.
Sub UserProc;
Var r: Double;
Begin
r := math.ATan(1);
Debug.WriteLine(r);
End Sub UserProc;
After executing the example the console window displays the arctangent of the specified angle equal to 0.785398163397448.
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.ATan(1);
System.Diagnostics.Debug.WriteLine(r);
End Sub;
See also: