ApCoCoA-1:Fn.ArcCos: Difference between revisions

From ApCoCoAWiki
m Bot: Category moved
m fixed links to namespace ApCoCoA
Line 23: Line 23:
</example>
</example>
</description>
</description>
<see>Fn.ArcCosN</see>
<see>ApCoCoA-1:Fn.ArcCosN|Fn.ArcCosN</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.ArcCos</key>
<key>Fn.ArcCos</key>
<key>elemfns.ArcCos</key>
<key>elemfns.ArcCos</key>

Revision as of 08:12, 7 October 2020

Fn.ArcCos

Returns the arccosine of a given value.

Syntax

Fn.ArcCos(X:RAT):RAT

Description

This function returns the arccosine of X rounded to the current

global accuracy. The domain of this functions ranges between -1

and 1.

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

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

Example

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

1.04719755119659774615
-------------------------------

Fn.ArcCosN

Fn.SetAccuracy

Fn.GetAccuracy