Finding global minimum by using Ant Colony Optimization?
조회 수: 16 (최근 30일)
이전 댓글 표시
I want to apply Ant Colony Optimization to one variable function for finding a global minimum. But i'm confused how to implement it. Do you have any suggestion about article related this topic?
댓글 수: 4
Adam
2015년 10월 29일
편집: Adam
2015년 10월 29일
Have you read papers on the subject? It's over 10 years since I wrote an ant colony algorithm, but I did it from papers as far as I can remember so there must be a lot more papers since then with details of the general algorithm that could be found via an internet search.
채택된 답변
Walter Roberson
2015년 10월 29일
There are ACO implementations in the File Exchange.
However, it can be shown that there is no algorithm that can always find the global minimum of a continuous "black box" function. In the discrete "black box function" case, the only algorithm that can always find the global minimum is to try every representable number in the range.
For functions that are available in analytic form rather than as "black box", analysis is sometimes able to find the global minima.
There are functions over the natural numbers for which it can be shown that knowing the value of the function for all values from 1 to N-1 does not allow you to predict the value of the function on N.
In other words, ACO can never be sure that it has found the global minima, and PSO and GA have the same difficulty.
댓글 수: 2
Walter Roberson
2015년 10월 29일
One implementation is:
The difficulty I spoke of before still applies: none of these techniques can promise global minima without some analysis from the user to confine their search to the area where the local minima is somehow known to be the global minima
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Traveling Salesman (TSP)에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!