Member of the advanced class.
c = expint(a)
Computes the exponential integral of the input elements. For all real x>0, expint(x) = integral(exp(-t)/t), t, x, inf).
| Name | Description |
| a | Specifies a real or complex matrix. |
| Name | Description |
| c | Returns the exponential integral of each of the elements in a. c is a real or complex matrix of the same size as a. |
A = [1+i, 1; -1, 2-3i]
C = expint(A)