Go to the first, previous, next, last section, table of contents.


1.10.1.19 exp

The `exp(x)` function returns the exponential function of its argument (`e` raised to the power of its argument). On some implementations (notably suns), exp(-x) returns undefined for very large x. A user-defined function like safe(x) = x<-100 ? 0 : exp(x) might prove useful in these cases.


Go to the first, previous, next, last section, table of contents.