Bounded root finding in scipy
问题 Scipy offers several seemingly equivalent functions for finding the root of a function in a given interval: brentq(f, a, b[, args, xtol, rtol, maxiter, ...]) Find a root of a function in given interval. brenth(f, a, b[, args, xtol, rtol, maxiter, ...]) Find root of f in [a,b]. ridder(f, a, b[, args, xtol, rtol, maxiter, ...]) Find a root of a function in an interval. bisect(f, a, b[, args, xtol, rtol, maxiter, ...]) Find root of a function within an interval. (See this webpage.) Can anyone