Difference between revisions of "ApCoCoA-1:Fn.LnN"
From ApCoCoAWiki
m (insert version info) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Version|1}} | ||
<command> | <command> | ||
<title>Fn.LnN</title> | <title>Fn.LnN</title> | ||
Line 21: | Line 22: | ||
</example> | </example> | ||
</description> | </description> | ||
− | <see> | + | <see>ApCoCoA-1:Fn.LnN|Fn.LnN</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.Log|Fn.Log</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.LogN|Fn.LogN</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see> |
<key>Fn.LnN</key> | <key>Fn.LnN</key> | ||
<key>elemfns.LnN</key> | <key>elemfns.LnN</key> | ||
<key>LnN</key> | <key>LnN</key> | ||
− | <wiki-category>Package_elemfns</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> |
</command> | </command> |
Latest revision as of 10:03, 7 October 2020
This article is about a function from ApCoCoA-1. |
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 -------------------------------