View source: R/negativeExponential.R
negativeExponential | R Documentation |
Computes the negative exponential growth model
y(t) = \alpha ( 1 - exp(-k t))
negativeExponential(t, alpha, k)
negativeExponential.inverse(x, alpha, k)
t |
time |
alpha |
upper asymptote |
k |
growth rate |
x |
size |
Daniel Rodriguez
D. Fekedulegn, M. Mac Siurtain, and J. Colbert, "Parameter estimation of nonlinear growth models in forestry," Silva Fennica, vol. 33, no. 4, pp. 327-336, 1999.
growth <- negativeExponential(0:10, 1, 0.3)
# Calculate inverse function
time <- negativeExponential.inverse(growth, 10, 0.3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.