R/flat.r

Defines functions flat

Documented in flat

flat <- function(x, span, eq.size=5000) {
  if (eq.size%%1!=0 || eq.size<=0) {
    stop("Equilibrium population size must be a postive integer")
  }
  return(eq.size)
}

Try the seedy package in your browser

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

seedy documentation built on May 29, 2017, 10:58 a.m.