R/repList.R

Defines functions repList

repList<-function(x,n) {
  z<-list()
  for (i in 1:n)
    z<-c(z,list(x))
  return(z)
}

Try the anacor package in your browser

Any scripts or data that you put into this service are public.

anacor documentation built on June 10, 2022, 5:09 p.m.