Member of the basic class.
c = exp(a)
Computes the base e exponential of the input elements.
| Name | Description |
| a | Specifies a scalar, vector, or matrix. |
| Name | Description |
| c | Returns the base e exponential of the elements in a. c is a matrix of the same size as a. |
A = [1, 0; -1, 2]
C = exp(A)