Member of the membership class.
c = isempty(a)
Determines whether a matrix is empty.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns 1 if a is empty. Otherwise, this function returns 0. c is a Boolean. |
A = [1, 2, 3; nan, inf, 4]
C = isempty(A)