pow

Exponentiate one argument by the other.


Synopsis

val = pow(base, exponent)


Description

pow returns the value of base raised to the exponent power, i.e.:

    base<sup>exponent</sup>

Arguments


Examples

   val = pow(3.5, 3)
   val = pow(4, 0.7)
   val = pow(7.8, 2.597)

See Also

abs, log, max, min, mod, round, trunc, wrap