up previous next
Returns the exponential of a given value.
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.
Fn.SetAccuracy(20);
R := Fn.Exp(2);
Dec(R, 30);
7.38905609893065022723
-------------------------------
|