Difference between revisions of "ApCoCoA-1:Fn.ArcTan"

From ApCoCoAWiki
m (Bot: Category moved)
m (fixed links to namespace ApCoCoA)
Line 22: Line 22:
 
</example>
 
</example>
 
</description>
 
</description>
<see>Fn.ArcTanN</see>
+
<see>ApCoCoA-1:Fn.ArcTanN|Fn.ArcTanN</see>
<see>Fn.SetAccuracy</see>
+
<see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see>
<see>Fn.GetAccuracy</see>
+
<see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see>
 
<key>Fn.ArcTan</key>
 
<key>Fn.ArcTan</key>
 
<key>elemfns.ArcTan</key>
 
<key>elemfns.ArcTan</key>

Revision as of 08:12, 7 October 2020

Fn.ArcTan

Returns the arctangent of a given value.

Syntax

Fn.ArcTan(X:RAT):RAT

Description

This function returns the arctangent of X rounded to the current

global accuracy.

  • @param X Value of which to compute the arctangent.

  • @return The arctangent of X rounded to the current global accuracy.

Example

Fn.SetAccuracy(20);
R := Fn.ArcTan(1/2);
Dec(R, 30);

0.46364760900080611621
-------------------------------

Fn.ArcTanN

Fn.SetAccuracy

Fn.GetAccuracy