| Main index | Section 3 | Options |
#include <math.h>
The exp2(), exp2f(), and exp2l() functions compute the base 2 exponential of the given argument x.
The expm1(), expm1f(), and the expm1l() functions compute the value exp(x)-1 accurately even for tiny argument x.
The pow(), powf(), and the powl() functions compute the value of x to the exponent y.
p(x) = a[0]*x**0 + a[1]*x**1 + a[2]*x**2 +...+ a[n]*x**n
at x = 0 rather than reject a[0]*0**0 as invalid.
| EXP (3) | April 1, 2020 |
| Main index | Section 3 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
| “ | Never write it in C if you can do it in `awk'; Never do it in `awk' if `sed' can handle it; Never use `sed' when `tr' can do the job; Never invoke `tr' when `cat' is sufficient; Avoid using `cat' whenever possible. |
” |
| — Taylor's Laws of Programming | ||