Member of the matrixops class.
c = power(a, b)
Raises input elements to powers that you specify.
| Name | Description |
| a | Specifies the elements you want to raise to a power. a is a scalar or matrix. |
| b | Specifies the powers to which you want to raise the elements in a. b is a scalar or matrix of the same size as a. |
| Name | Description |
| c | Returns the values of a.^b. c is a scalar or a matrix. |
A = [1+3i, 5.6; -2.3, 8-i]
B = 3
C = power(A, B)