Function Reference
— Built-in Function: zeros (x)
— Built-in Function: zeros (n, m)
— Built-in Function: zeros (n, m, k, ...)
— Built-in Function: zeros (..., class)

Return a matrix or N-dimensional array whose elements are all 0. The arguments are handled the same as the arguments for eye.

The optional argument class, allows zeros to return an array of the specified type, for example

          val = zeros (n,m, "uint8")