dcooley / geometries

R package for creating and manipulating geometric data structures
https://dcooley.github.io/geometries/
Other
28 stars 2 forks source link

count and return n_rows of each matrix #9

Closed dcooley closed 4 years ago

dcooley commented 4 years ago

Return an IntegerVector of nrows() of each inner matrix

l <- list( list( matrix(1:4, ncol = 2), matrix(1:4, ncol = 2) ) )

would return

2, 2
dcooley commented 4 years ago

actually, implementing this here