Difference between revisions of "ApCoCoA-1:Fn.LnN"
From ApCoCoAWiki
S schuster (talk | contribs) (New page: <command> <title>Fn.LnN</title> <short_description>Returns the natural logarithm of a given value with a given accuracy.</short_description> <syntax> Fn.LnN(Val:RAT,Acc:INT):RAT </synt...) |
|||
Line 27: | Line 27: | ||
<see> Fn.GetAccuracy</see> | <see> Fn.GetAccuracy</see> | ||
<key>Fn.LnN</key> | <key>Fn.LnN</key> | ||
− | <key> | + | <key>elemfns.LnN</key> |
<key>LnN</key> | <key>LnN</key> | ||
<wiki-category>Package_elemfns</wiki-category> | <wiki-category>Package_elemfns</wiki-category> | ||
</command> | </command> |
Revision as of 14:13, 4 May 2011
Fn.LnN
Returns the natural logarithm of a given value with a given accuracy.
Syntax
Fn.LnN(Val:RAT,Acc:INT):RAT
Description
This function returns the natural logarithm of Val rounded to the given accuracy Acc.
@param Val The value of which to compute the natural logarithm.
@param Acc The desired accuracy.
@return The natural logarithm of Val rounded to accuracy Acc.
Example
R := Fn.LnN(5, 30); Dec(R, 40); 1.609437912434100374600759333226 -------------------------------