ApCoCoA-1:Fn.E: Difference between revisions
From ApCoCoAWiki
S schuster (talk | contribs) New page: <command> <title>Fn.E</title> <short_description>Returns Euler's number e rounded to the current global accuracy.</short_description> <syntax> Fn.E():RAT </syntax> <description> <item... |
m insert version info |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{Version|1}} | |||
<command> | <command> | ||
<title>Fn.E</title> | <title>Fn.E</title> | ||
Line 19: | Line 20: | ||
</example> | </example> | ||
</description> | </description> | ||
<see> | <see>ApCoCoA-1:Fn.EN|Fn.EN</see> | ||
<see> | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> | ||
<see> | <see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see> | ||
<key>Fn.E</key> | <key>Fn.E</key> | ||
<key> | <key>elemfns.E</key> | ||
<key>E</key> | <key>E</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.E
Returns Euler's number e rounded to the current global accuracy.
Syntax
Fn.E():RAT
Description
@return Returns Euler's number e rounded to the current global accuracy.
Example
Fn.SetAccuracy(10); R := Fn.E(); Dec(R, 15); 2.7182818285 -------------------------------