Member of the membership class.
c = isreal(a)
Determines whether a matrix is real. A number is real if and only if in a=Re(a)+Im(a)*i, the second term Im(a) is 0. A matrix is real if and only if all elements in that matrix are real.
| Name | Description |
| a | Specifies a matrix. |
| Name | Description |
| c | Returns 1 if a is a real matrix. Otherwise, this function returns 0. c is a Boolean. |
C = isreal([5+0i, 7, 6, 789-8.3i])
C = isreal('der')