Nothing
###
### $Id: bisection.search.R
###
### fields, Tools for spatial data
### Copyright 2004-2020, Institute for Mathematics Applied Geosciences
### University Corporation for Atmospheric Research
### Used with permission of Doug Nychka under Artistic license (2008)
##-----------------------------------------------------------------------------
"bisection.search" <-
function (x1, x2, f, tol = 1e-07, niter = 25, f.extra = NA, upcross.level = 0)
{
f1 <- f(x1, f.extra) - upcross.level
f2 <- f(x2, f.extra) - upcross.level
if (f1 > f2) {
stop("Error attempting to find concentration level in model. Fitted minimum concentration and must be less than or equal to fitted maximum concentration.")
}
iter <- niter
for (k in 1:niter) {
xm <- (x1 + x2)/2
fm <- f(xm, f.extra) - upcross.level
if (fm < 0) {
x1 <- xm
f1 <- fm
}
else {
x2 <- xm
f2 <- fm
}
if (abs(fm) < tol) {
iter <- k
break
}
}
xm <- (x1 + x2)/2
fm <- f(xm, f.extra) - upcross.level
list(x = xm, fm = fm, iter = iter)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.