Pow()
Summary
Computes the value of a number raised to a power.
Syntax
result = Pow(real input_value, real input_power)
| Argument | Contents |
|---|---|
| input_value | Any number |
| input_power | Any number |
Returns
A real number that is equal to input_value raised to the power of input-power.
Example
x = Pow(2.0, 3.0) // x = 8
See Also
| Function | Summary |
|---|---|
| Exp() | Returns the value of the constant e raised to a power |
| Log() | Returns the natural logarithm of a value |
| Log10() | Returns the common logarithm of a value |