Pow()
Previous  Next

Description: Raises the <Base> by the <Exponent>.

     Syntax:
     
Pow(<Base>, <Exponent>)

Part
Description
<Base>
Required. The number or variable to raise to the power of <Exponent>.
<Exponent>
Required. The number to raise the <Base> by.

Notes: The use of the Pow() function or the ^ operator will inherit the math library.

Example:

        a = 3
        b = Pow(3, a)
        Print b

See Also:
Exponentials