Create matrix with zeros values only

zeros(nrow, ncol)

Arguments

nrow

number of rows

ncol

number of columns

Examples

zeros(4, 5)
#> [,1] [,2] [,3] [,4] [,5] #> [1,] 0 0 0 0 0 #> [2,] 0 0 0 0 0 #> [3,] 0 0 0 0 0 #> [4,] 0 0 0 0 0