Difference between revisions of "ApCoCoA-1:Fn.ArcCos"
From ApCoCoAWiki
m (Bot: Category moved) |
|||
Line 29: | Line 29: | ||
<key>elemfns.ArcCos</key> | <key>elemfns.ArcCos</key> | ||
<key>ArcCos</key> | <key>ArcCos</key> | ||
− | <wiki-category>Package_elemfns</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> |
</command> | </command> |
Revision as of 16:06, 2 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 -------------------------------