Raise a matrix to a power
Raises a matrix x
to the y
-th power. x ^ y
computes
element wise powers, whereas this computes y - 1 matrix multiplications.
mat_power(x, y)
is identical to x %^% y
.
x %^% y mat_power(x, y)
x |
A numeric or integer matrix. |
y |
An integer. |
A matrix.
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.