The zeros function creates a real matrix with all elements set to the value 0.0.
Return Value
rmZeros is a real matrix with the size nRows by nColumns with all elements set to 0.0.
Parameters
nRows is the number of rows.
nColumns is the number of columns.
rvSize is a vector with two elements. rvSize[1] is the number of rows and rvSize[2] is the number of columns.
Example
* m1 = [1,2,3]
* m1 = [m1, zeros(1, 7)]
* m2 = zeros(size(m1));
id-973156