Open selipot opened 3 years ago
Should not cellprune(x) just remove empty cells? It appears to remove cells of length 1 as well. To not remove cells of length 1, it should be called as cellprune(x,0).
cellprune(x)
cellprune(x,0)
cellprune(x,M) removes cells of length M or less and not less than M as stated in the help
cellprune(x,M)
Should not
cellprune(x)
just remove empty cells? It appears to remove cells of length 1 as well. To not remove cells of length 1, it should be called ascellprune(x,0)
.