pow
pow(base
,exponent
)
The POW function has the following arguments:
base
The base number.
exponent
The exponent value.
The pow function raises a base number to a power.
Formula |
Description |
Result |
---|---|---|
pow(2, 2) |
2 raised to the second power |
4.0 |
pow(2.0, 3.0) |
2 raised to the third power |
8.0 |
pow(10, 10) |
10 raised to the tenth power. |
100.0 |