R/shortcuts.R
zeros.Rd
Create matrix with zeros values only
zeros(nrow, ncol)
number of rows
number of columns
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