diff options
Diffstat (limited to 'R/plot.mkinfit.R')
-rw-r--r-- | R/plot.mkinfit.R | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/R/plot.mkinfit.R b/R/plot.mkinfit.R index 9606507a..9f19213a 100644 --- a/R/plot.mkinfit.R +++ b/R/plot.mkinfit.R @@ -146,9 +146,8 @@ plot.mkinfit <- function(x, fit = x, func = "diffs", initfunc = "initpar", jacfunc = NULL, nout = 0, outnames = NULL) } - out <- try(mkinpredict(fit$mkinmod, odeparms, odeini, outtimes, - solution_type = solution_type, atol = fit$atol, rtol = fit$rtol), - silent = TRUE) + out <- mkinpredict(fit$mkinmod, odeparms, odeini, outtimes, + solution_type = solution_type, atol = fit$atol, rtol = fit$rtol) out <- as.data.frame(out) |