August 30th, 2009, 8:08 pm
QuoteOriginally posted by: shabani40My problem is just to find the global minimum of a function, the behavior of which is difficult to guess. A global minimization algorithm would probably give me the real minimum, but it is known that this approach is much slower when compared to local algorithms that on the other hand could return a local minimum and not the global one. That's why the combination of the two approaches could be the best solution. My problem is that I don't know how to combine themYou can use genetic method (DESolver) to find the global minimum and then use Levenberg-Marquardt for a local minimum.Good luck