ApCoCoA-1:Fn.CosN: Difference between revisions
From ApCoCoAWiki
S schuster (talk | contribs) New page: <command> <title>Fn.CosN</title> <short_description>Returns the cosine of a given value with a given accuracy.</short_description> <syntax> Fn.CosN(Val:RAT,Acc:INT):RAT </syntax> <desc... |
m insert version info |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Version|1}} | |||
<command> | <command> | ||
<title>Fn.CosN</title> | <title>Fn.CosN</title> | ||
Line 6: | Line 7: | ||
</syntax> | </syntax> | ||
<description> | <description> | ||
This function returns the cosine of <tt> | This function returns the cosine of <tt>Val</tt> rounded to the given | ||
accuracy <tt>Acc</tt>. | accuracy <tt>Acc</tt>. | ||
Line 12: | Line 13: | ||
<item>@param <em>Val</em> Value of which to compute the cosine.</item> | <item>@param <em>Val</em> Value of which to compute the cosine.</item> | ||
<item>@param <em>Acc</em> The desired accuracy.</item> | <item>@param <em>Acc</em> The desired accuracy.</item> | ||
<item>@return The cosine of <tt> | <item>@return The cosine of <tt>Val</tt> rounded to the given accuracy <tt>Acc</tt>.</item></itemize> | ||
<example> | <example> | ||
R := Fn.CosN(1, 30); | R := Fn.CosN(1, 30); | ||
Line 22: | Line 23: | ||
</example> | </example> | ||
</description> | </description> | ||
<see> | <see>ApCoCoA-1:Fn.Cos|Fn.Cos</see> | ||
<see> | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> | ||
<see> | <see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see> | ||
<key>Fn.CosN</key> | <key>Fn.CosN</key> | ||
<key> | <key>elemfns.CosN</key> | ||
<key>CosN</key> | <key>CosN</key> | ||
<wiki-category>Package_elemfns</wiki-category> | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> | ||
</command> | </command> |
Latest revision as of 10:01, 7 October 2020
This article is about a function from ApCoCoA-1. |
Fn.CosN
Returns the cosine of a given value with a given accuracy.
Syntax
Fn.CosN(Val:RAT,Acc:INT):RAT
Description
This function returns the cosine of Val rounded to the given
accuracy Acc.
@param Val Value of which to compute the cosine.
@param Acc The desired accuracy.
@return The cosine of Val rounded to the given accuracy Acc.
Example
R := Fn.CosN(1, 30); Dec(R, 40); 0.540302305868139717400936607443 -------------------------------