Member of the membership class.
c = isnan(a)
Determines whether elements of a matrix are NaN.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns a matrix of Boolean values. An element in c is 1 if and only if the corresponding element of a is NaN. Otherwise, the element is 0. c is a matrix of the same size as a. |
C = isnan([nan, 1/0, 4])
C = isnan(2.3+nan*i)