Member of the linalgebra class.
c = mpower(a, b)
Computes the matrix power.
| Name | Description |
| a | Specifies a scalar or square matrix. If b is a matrix, then a must be a scalar. |
| b | Specifies a scalar or square matrix. If a is a matrix, then b must be a scalar. |
| Name | Description |
| c | Returns a^b. c is a square matrix. |
A = [1+3i, 5.6; -2.3, 8-i]
B = 3
C = mpower(A, B)