pow
x ^ y
pow(x, y)
Calculates the power of x to y, x^y.
Try it yourself:
$1 | 2^3
| |
$2 | 2*2*2
| |
$3 | 1 + e ^ (pi * i)
| |
$4 | pow([[1, 2], [4, 3]], 2)
| |
$5 | pow([[1, 2], [4, 3]], -1)
|