Member of the membership class.
c = isspace(a)
Determines whether the input elements represent white spaces. White spaces include spaces, new lines, carriage returns, tabs, vertical tabs, and form feeds.
| 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 represents white space. Otherwise, the element is 0. c is a matrix of the same size as a. |
C = isspace(char([9:1:40]))
C = isspace('w h i t e')