Function pow( a, b )

Description:
Exponentiation. The result is the value of the first argument raised to the power of the second argument.
Parameters:
a (floating point)
the base.
b (floating point)
the exponent.
Return Value (floating point):
the value ab.
Signature:
double pow(double, double)