Return the minimum of a function of one variable.
Given a function of one variable and a possible bracketing interval, return the minimum of the function isolated to a fractional precision of tol.
Parameters : | func : callable func(x,*args)
args : tuple
brack : tuple
tol : float
full_output : bool
|
---|
See also
Notes
Uses analog of bisection method to decrease the bracketed interval.