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

From ApCoCoAWiki
m (insert version info)
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{Version|1}}
 
<command>
 
<command>
 
   <title>Fn.ArcSin</title>
 
   <title>Fn.ArcSin</title>
Line 23: Line 24:
 
</example>
 
</example>
 
</description>
 
</description>
<see>Fn.ArcSinN</see>
+
<see>ApCoCoA-1:Fn.ArcSinN|Fn.ArcSinN</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.ArcSin</key>
 
<key>Fn.ArcSin</key>
 
<key>elemfns.ArcSin</key>
 
<key>elemfns.ArcSin</key>
 
<key>ArcSin</key>
 
<key>ArcSin</key>
<wiki-category>Package_elemfns</wiki-category>
+
<wiki-category>ApCoCoA-1:Package_elemfns</wiki-category>
 
</command>
 
</command>

Latest revision as of 10:00, 7 October 2020

This article is about a function from ApCoCoA-1.

Fn.ArcSin

Returns the arcsine of a given value.

Syntax

Fn.ArcSin(X:RAT):RAT

Description

This function returns the arcsine 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 arcsine.

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

Example

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

0.52359877559829887308
-------------------------------

Fn.ArcSinN

Fn.SetAccuracy

Fn.GetAccuracy