| Concept Framework 2.2 documentation | Contents | Index |
| Name | Version | Deprecated |
| exp | version 1.0 | no |
| number exp(number n) |
| n | [in] Any number |
|
Returns the exponential value of the parameter, if successful.
On overflow, the function returns indefinite by default and on underflow, exp returns 0. |
import standard.C.math
class Main {
function Main() {
var x = 15;
var y;
y = exp(x);
echo "exp(" + x + ") = " + y;
}
}
Results
exp(15) = 3269017.3724721107
|
| Documented by Simona Gabriela Plesuvu, generation time: Sun Jan 27 18:15:14 2013 GMT | (c)2013 Devronium Applications |