Difference between revisions of "ApCoCoA-1:Fn.Exp"
From ApCoCoAWiki
m (Bot: Category moved) |
m (fixed links to namespace ApCoCoA) |
||
Line 22: | Line 22: | ||
</example> | </example> | ||
</description> | </description> | ||
− | <see>Fn.ExpN</see> | + | <see>ApCoCoA-1:Fn.ExpN|Fn.ExpN</see> |
− | <see>Fn.SetAccuracy</see> | + | <see>ApCoCoA-1:Fn.SetAccuracy|Fn.SetAccuracy</see> |
− | <see>Fn.GetAccuracy</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> |
Revision as of 08:13, 7 October 2020
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 -------------------------------