Using GNU Scientific "multimin" to find all local minima - Stack Overflow most recent 30 from stackoverflow.com 2009-12-14T21:05:16Z http://stackoverflow.com/feeds/question/211625 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/211625/using-gnu-scientific-multimin-to-find-all-local-minima 0 Using GNU Scientific "multimin" to find all local minima andygeers 2008-10-17T10:08:48Z 2009-05-11T09:21:38Z <p>The GNU Scientific library has a <a href="http://www.gnu.org/software/gsl/manual/html_node/Multidimensional-Minimization.html" rel="nofollow">multi-dimensional function minimization</a> framework. However, its caveats explicitly says that when used on a function with several different local minima it just returns one arbitrary solution. Does anybody know how you might go about adapting it so that it would return a list of <em>all</em> local minima (subject to some threshold criteria)?</p> http://stackoverflow.com/questions/211625/using-gnu-scientific-multimin-to-find-all-local-minima/211661#211661 1 Answer by andygeers for Using GNU Scientific "multimin" to find all local minima andygeers 2008-10-17T10:30:04Z 2008-10-17T10:30:04Z <p>It's not based on GNU Scientific, but I found this algorithm for finding all local minima: http://www.cs.uoi.gr/~lagaris/papers/MINF.pdf </p> http://stackoverflow.com/questions/211625/using-gnu-scientific-multimin-to-find-all-local-minima/847348#847348 1 Answer by quant_dev for Using GNU Scientific "multimin" to find all local minima quant_dev 2009-05-11T09:21:38Z 2009-05-11T09:21:38Z <p>Any standard optimization algorithm looks for a local minumum somewhere "close" to the starting point, either chosen by itself or provided by you. Finding all local minima can be a non-computable problem because you can have an infiniten number of them, even in a finite range (e.g. f(x) = [ cos(1/x) ]^2 has an infinite number of local minima in a (0, 1] range). Assuming you have a finite number of local minima, finding all of them is a more complex task than finding a global minimum, which in turn is a much more difficult problem than finding a local minimum somewhere near to you. There is no simple way of adapting local optimization algorithms to find global minima. Even popular algorithms to find a global minimum, such a genetic algorithsm/evolution strategies, do not guarantee that they visit all local minima. In fact, they are trying to avoid it.</p> <p>The best way to use GSL in this situation would be to look at the minimized function and try to guess where the minima should be and then look for them using the GSL code.</p>