Member of the matrix class.
c = zeros(a)
c = zeros(a, b)
c = zeros([a, b])
Generates a matrix of zeros.
| Name | Description |
| a | Specifies the number of rows in c. a is a positive scalar. |
| b | Specifies the number of columns in c. b is a positive scalar. |
| Name | Description |
| c | Returns an a-by-b matrix whose elements are all 0s. If you do not specify b, c returns a square matrix of length a. |
C = zeros(3, 5)