Difference between revisions of "ApCoCoA-1:Fn.Exp"
From ApCoCoAWiki
m (insert version info) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{Version|1}} | ||
<command> | <command> | ||
<title>Fn.Exp</title> | <title>Fn.Exp</title> | ||
Line 22: | Line 23: | ||
</example> | </example> | ||
</description> | </description> | ||
− | <see> | + | <see>ApCoCoA-1:Fn.ExpN|Fn.ExpN</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> |
− | <see> | + | <see>ApCoCoA-1:Fn.GetAccuracy|Fn.GetAccuracy</see> |
<key>Fn.Exp</key> | <key>Fn.Exp</key> | ||
<key>elemfns.Exp</key> | <key>elemfns.Exp</key> | ||
<key>Exp</key> | <key>Exp</key> | ||
− | <wiki-category>Package_elemfns</wiki-category> | + | <wiki-category>ApCoCoA-1:Package_elemfns</wiki-category> |
</command> | </command> |
Latest revision as of 10:02, 7 October 2020
This article is about a function from ApCoCoA-1. |
Fn.Exp
Returns the exponential of a given value.
Syntax
Fn.Exp(X:RAT):RAT
Description
This function returns the exponential of X rounded to the current global
accuracy.
@param X The value of which to compute the exponential.
@return Returns the exponential of X rounded to the current global accuracy.
Example
Fn.SetAccuracy(20); R := Fn.Exp(2); Dec(R, 30); 7.38905609893065022723 -------------------------------