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

From ApCoCoAWiki
m (fixed links to namespace ApCoCoA)
m (insert version info)
 
Line 1: Line 1:
 +
{{Version|1}}
 
<command>
 
<command>
 
   <title>Fn.ArcTan</title>
 
   <title>Fn.ArcTan</title>

Latest revision as of 10:01, 7 October 2020

This article is about a function from ApCoCoA-1.

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