diff options
Diffstat (limited to 'R/logistic.solution.R')
-rw-r--r-- | R/logistic.solution.R | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/R/logistic.solution.R b/R/logistic.solution.R new file mode 100644 index 00000000..a3bddab3 --- /dev/null +++ b/R/logistic.solution.R @@ -0,0 +1,4 @@ +logistic.solution <- function(t, parent.0, kmax, k0, r) +{ + parent = parent.0 * (kmax / (kmax - k0 + k0 * exp (r * t))) ^(kmax/r) +} |