diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2014-01-22 10:46:44 +0100 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2014-01-22 10:46:44 +0100 |
commit | 9ef8537149a37ebef8a2a18232644202872bbe55 (patch) | |
tree | 066de4b62d6fa8078637fe23ae466fe0f525629e /R/mkinfit.R | |
parent | af4a101d2cca91598ec5d1dc297c31a75517b139 (diff) | |
parent | 8b94131388071980e62c17190eb4229e89975a0c (diff) |
Merge branch 'master' of https://github.com/jranke/mkin
Conflicts:
DESCRIPTION
R/mkinfit.R
Diffstat (limited to 'R/mkinfit.R')
-rw-r--r-- | R/mkinfit.R | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/R/mkinfit.R b/R/mkinfit.R index fd53627..6c976a3 100644 --- a/R/mkinfit.R +++ b/R/mkinfit.R @@ -1,5 +1,3 @@ -# $Id$
-
# Copyright (C) 2010-2014 Johannes Ranke
# Contact: jranke@uni-bremen.de
# The summary function is an adapted and extended version of summary.modFit
@@ -28,6 +26,7 @@ mkinfit <- function(mkinmod, observed, fixed_parms = NULL,
fixed_initials = names(mkinmod$diffs)[-1],
solution_type = "auto",
+ method.ode = "lsoda",
method.modFit = "Marq",
control.modFit = list(),
plot = FALSE, quiet = FALSE,
@@ -161,6 +160,7 @@ mkinfit <- function(mkinmod, observed, # Solve the system with current transformed parameter values
out <- mkinpredict(mkinmod, parms, odeini, outtimes,
solution_type = solution_type,
+ method.ode = method.ode,
atol = atol, rtol = rtol, ...)
assign("out_predicted", out, inherits=TRUE)
@@ -177,7 +177,9 @@ mkinfit <- function(mkinmod, observed, outtimes_plot = seq(min(observed$time), max(observed$time), length.out=100)
out_plot <- mkinpredict(mkinmod, parms, odeini, outtimes_plot,
- solution_type = solution_type, atol = atol, rtol = rtol, ...)
+ solution_type = solution_type,
+ method.ode = method.ode,
+ atol = atol, rtol = rtol, ...)
plot(0, type="n",
xlim = range(observed$time), ylim = range(observed$value, na.rm=TRUE),
|