= POW( base, exponent ) = base ^ exponent
The POW
instruction is short for “power” and is used to calculate the
power of a number. In other words, it allows you to raise a base number
to a certain exponent. It multiplies the base by itself a number of times
equal to the exponent. For example, POW(2, 3)
means to multiply 2
by itself 3 times: 2 * 2 * 2
. The variables used for the base and
exponent must be integer. So can be computationally expensive for very large
exponents. In some cases, there may be more efficient algorithms
for calculating powers.
If you have encountered a problem using this command, if you think there is a bug or the explanation is unclear, please open an issue for this keyword on GitHub. Thank you!