Member of the matrix class.
c = false(a)
c = false(a, b)
Generates a logical matrix of zeros. This matrix is different from the matrix of double-precision, floating-point numbers that the zeros function generates because a logical array can hold values of 0 or 1 only.
| Name | Description |
| a | Specifies the number of rows for the Boolean matrix. a is a positive integer. |
| b | Specifies the number of columns for the Boolean matrix. b is a positive integer. |
| Name | Description |
| c | Returns a matrix of Boolean zeros with a rows and b columns. If you do not specify b, c returns a square matrix of length a. |
C = false(3, 5)