Owning Class: membership
Requires: MathScript RT Module
c = is_space(a)
Legacy Name: isspace
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 = is_space(char([9:1:40]))
C = is_space('w h i t e')