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

From ApCoCoAWiki
(New page: <command> <title>Fn.ArcTan</title> <short_description>Returns the arctangent of a given value.</short_description> <syntax> Fn.ArcTan(X:RAT):RAT </syntax> <description> This function r...)
 
Line 26: Line 26:
 
<see>  Fn.GetAccuracy</see>
 
<see>  Fn.GetAccuracy</see>
 
<key>Fn.ArcTan</key>
 
<key>Fn.ArcTan</key>
<key>apcocoa/elemfns.ArcTan</key>
+
<key>elemfns.ArcTan</key>
 
<key>ArcTan</key>
 
<key>ArcTan</key>
 
<wiki-category>Package_elemfns</wiki-category>
 
<wiki-category>Package_elemfns</wiki-category>
 
</command>
 
</command>

Revision as of 13:46, 4 May 2011

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