ApCoCoA-1:Fn.ArcSin: Difference between revisions

From ApCoCoAWiki
Stadler (talk | contribs)
No edit summary
Stadler (talk | contribs)
No edit summary
Line 23: Line 23:
</example>
</example>
</description>
</description>
<see> Fn.ArcSinN</see>
<see>Fn.ArcSinN</see>
<see> Fn.SetAccuracy</see>
<see>Fn.SetAccuracy</see>
<see> Fn.GetAccuracy</see>
<see>Fn.GetAccuracy</see>
<key>Fn.ArcSin</key>
<key>Fn.ArcSin</key>
<key>elemfns.ArcSin</key>
<key>elemfns.ArcSin</key>

Revision as of 08:58, 5 May 2011

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