I will start off by saying that this feels like it should be easy... but it's not entirely obvious to me. I am trying to use the BrentOptimizer to find local minima and maxima of a function. I have an idea of the periodicity of these, and I feel like I should be able to use the BracketFinder to bracket the optimums and then send that off to the BrentOptimizer.
Her is the documentation: http://commons.apache.org/math/api-2.2/org/apache/commons/math/optimization/univariate/BracketFinder.html
So for a simple case, consider:
f(x) = sin(x)
We know that there is a max at Pi/2 and a min at 3Pi/2. If I were starting at zero and moving along the function, how would I go looking for that root at Pi/2? It really comes down to the constructor arguments and the initial points. Are there any best practices (assuming you know a little bit about the shape of your function) that I can use to set these parameters in a reasonable way?
Thanks
You have probably sorted this out by now, but the bracketing method does not expect any initial points at all, the intention with
BracketFinder
is to find a starting guess that you should apply in your call to the BrentOptimizer. It should be OK to apply the default constructor inBracketFinder
.After having received bracketing points, use the three-point
optimize
method defined in the abstract base class BaseAbstractUnivariateOptimizer, wheremin
,max
,startValue
are taken from theBracketFinder
:sgetLo()
,getHi()
andgetMid()
, respectively.The BracketFinder implementation is obviously based on the one found in Numerical Recipes, chapter 10.1 in the C version of the book. This could give you some more background on the bracketing principles used.