R/utils-export.R
matrix-power.Rd
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
x ^ y
mat_power(x, y)
x %^% y
x %^% y mat_power(x, y)
A numeric or integer matrix.
An integer.
A matrix.