Owning Class: linalgebra
Requires: MathScript RT Module
c = powermx(a, b)
Legacy Name: mpower
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 = powermx(A, B)