Pow

The Pow function is used to raise a number to the power of an exponent.

Syntax :

Pow(Value,Exponent)
Parameters Description
Value Required, number. Number can be negative only if exponent is an integer value.
Exponent a quantity representing the power to which a given number or expression is to be raised, usually expressed as a raised symbol beside the number or expression (e.g. 4 in 2^4 = 2 2 2 * 2) .

Example :

dPow = Pow(2,0)
dPow = Pow(7,6)
dPow = Pow(3.14159265359,9)
dPow = Pow(4,-6)
dPow = Pow(-3,5)
DEBUG(dPow)

Result :

d(Pow)
= 1
= 117649
= 29809.0993334639
= 0.000244140625
= -243