diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-12 08:32:08 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-07-12 08:32:08 +0200 |
commit | 316f1360d1e12eefe491f86b0bbcd6dcf091c736 (patch) | |
tree | f155d7bcf82738b5623b4bc3a96aa431b007fceb /R/IORE.solution.R | |
parent | 65987c9b1ff9206859105c0f94be8346d457262e (diff) |
First working fits with IORE model
Diffstat (limited to 'R/IORE.solution.R')
-rw-r--r-- | R/IORE.solution.R | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/R/IORE.solution.R b/R/IORE.solution.R new file mode 100644 index 00000000..9546ce56 --- /dev/null +++ b/R/IORE.solution.R @@ -0,0 +1,4 @@ +IORE.solution <- function(t, parent.0, k.iore, N)
+{
+ parent = (parent.0^(1 - N) - (1 - N) * k.iore * t)^(1/(1 - N))
+}
|