mud/lib/doc/efun/floats/pow
2020-09-06 05:43:07 -07:00

14 lines
260 B
Plaintext

pow - find an exponent of a float
float pow( float x, float y );
This efun is only available if PACKAGE_MATH is defined.
pow() returns x to the y power. If x is 0.0, y must be positive. If x is
negative, y must be an integer.
See also:
exp,
log,
sqrt