powered by
A function for continuous logistic growth, for use with ode in the deSolve package.
ode
deSolve
clogistic(times, y, parms)
Times points that will return N
N
a vector of logistic growth parameters
Returns of list of one component (required by ode).
The user does not put these directly into this function, but rather uses ode in the deSolve package.
The function is based on the logistic growth equation $$\frac{dN}{dt} = rN\left(1-\alpha N\right)$$
or equivalently $$\frac{dN}{dt} = rN\left(\frac{K-N}{K}\right)$$
Lotka, A.J. (1956) Elements of Mathematical Biology. Dover Publications, Inc.
Stevens. M.H.H. (2009) A Primer of Ecology with R. Use R! Series. Springer.
dlogistic, thetalogistic, levins, lvcomp2, lvcompg
dlogistic
thetalogistic
levins
lvcomp2
lvcompg
# NOT RUN { library(deSolve) p <- c(1,.01) time <- 1:10 initialN <- 10 out <- ode(y=initialN, times=time, func=clogistic, parms=p) plot(time, out[,-1], type='l') # }
Run the code above in your browser using DataLab