View source: R/grow_exponential.R
| grow_exponential | R Documentation |
Unlimited exponential growth model.
grow_exponential(time, parms)
time |
vector of time steps (independent variable). |
parms |
named parameter vector of the exponential growth model with:
|
The equation used is:
y = y0 * exp(mumax * time)
vector of dependent variable (y).
Other growth models:
grow_baranyi(),
grow_gompertz2(),
grow_gompertz(),
grow_huang(),
grow_logistic(),
grow_richards(),
growthmodel,
ode_genlogistic(),
ode_twostep()
time <- seq(0, 30, length=200) y <- grow_exponential(time, c(y0=1, mumax=0.5))[,"y"] plot(time, y, type="l")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.