MBO

所属分类:matlab编程
开发工具:matlab
文件大小:11KB
下载次数:89
上传日期:2015-05-12 19:53:36
上 传 者一世无情
说明:  帝王蝶优化算法,一种新的元启发式优化算法!
(In nature, the eastern North American monarch population is known for its southward migration during the late summer/autumn the northern United States and southern Canada to Mexico, covering thousands of miles. By simplifying and idealizing the migration of monarch butterflies, a new kind of nature-inspired metaheuristic algorithm, called Monarch Butterfly Optimization (MBO), a first of its kind, is proposed in this paper. In MBO, all the monarch butterfly individuals are located in two distinct lands viz. Southern Canada & northern United States (Land 1) and Mexico (Land 2). Accordingly, the positions of the monarch butterflies are updated in two ways. Firstly, the offsprings are generated (position updating) by migration operator, which can be adjusted by the migration ratio. It is followed by tuning the positions for other butterflies by means of butterfly adjusting operator. In order to keep the population unchanged and minimize fitness uations, the sum of the newly-generated but)

文件列表:
MBO_Generation_V1.m (8868, 2015-05-12)
MBO_FEs_V1.m (9218, 2015-05-12)
ClearDups.m (788, 2015-05-10)
CombinePopulation.m (322, 2015-05-10)
Ackley.m (1664, 2015-05-10)
Conclude2.m (1091, 2015-05-10)
Conclude1.m (1041, 2015-05-10)
Init.m (1669, 2015-05-10)
PopSort.m (530, 2007-08-01)
ComputeAveCost.m (524, 2007-01-12)

Monarch Butterfly Optimization (MBO) Gai-Ge Wang May 10, 2015 email: gaigewang@163.com gaigewang@gmail.com The files in this zip archive are MATLAB m-files that can be used to study Monarch Butterfly Optimization algorithm. MBO is the method that we invented and wrote about in the following paper: Gai-Ge Wang, Suash Deb, and Zhihua Cui, Monarch Butterfly Optimization. Neural Computing and Applications, in press. DOI: 10.1007/s00521-015-1923-y Note: 1) I do not make any effort to rewrite some general codes, while I reuse some codes according to Prof. Dan Simon. We should stand the shoulder of giant, therefore I have more time to focus on our method-MBO. In the following, I will provide the detailed description about all the codes. 2) The MATLB R2015a is used when implementing our method. 3) The C++ code of Monarch Butterfly Optimization (MBO) can be found in the web: https://github.com/ggw0122/Monarch-Butterfly-Optimization 4) As discussed in the paper, the MBO cannot find the best solution for each run. Our research team will improve it and distribute the codes in our future research. The MATLAB files can be used to reproduce the results in the paper, or to do your own experiments. The paper and the software are available at https://github.com/ggw0122/Monarch-Butterfly-Optimization. The software is freely available for any purposes (it is on the Internet, after all) although I would of course appreciate an acknowledgement if you use it as part of a paper or presentation. The MATLAB files and their descriptions are as follows: Ackley.m: This is the benchmark functions discussed in the paper. You can use it as template to write your own function if you are interested in testing or optimizing some other functions. This code is modified according to Dan Simon. The original one is available at http://academic.csuohio.edu/simond/bbo. MBO_Generation_V1.m, MBO_FEs_V1.m: Monarch Butterfly Optimization algorithm. The fixed generations (iterations) and fixed Function Evaluations (FEs) are considered as termination condition for MBO_Generation_V1.m and MBO_FEs_V1.m, respectively. It can be used to optimize some function by typing, for example, the following at the MATLAB prompt: >> MBO_Generation_V1(@Ackley); This command would run MBO_Generation_V1 on the Ackley function (which is codified in Ackley). >> MBO MBO_FEs_V1(@Ackley); This command would run MBO_FEs_V1 on the Ackley function (which is codified in Ackley). Init.m: This contains various initialization settings for the optimization methods. You can edit this file to change the population size, the generation count limit, the problem dimension, the maximum Function Evaluations (FEs), and the percentage of population of any of the optimization methods that you want to run. This code is modified according to Dan Simon. The original one is available at http://academic.csuohio.edu/simond/bbo. ClearDups.m: This is used by each optimization method to get rid of duplicate population members and replace them with randomly generated individuals. This code is modified according to Dan Simon. The original one is available at http://academic.csuohio.edu/simond/bbo. ComputeAveCost.m: This is used by each optimization method to compute the average cost of the population and to count the number of legal (feasible) individuals. This code is the same as Dan Simon. The original one are available at http://academic.csuohio.edu/simond/bbo. PopSort.m: This is used by each optimization method to sort population members from most fit to least fit. This code is the same with Dan Simon. The original one is available at http://academic.csuohio.edu/simond/bbo. Conclude1.m, Conclude2.m: They are concludes the processing of each optimization method. It does common processing like outputting results. Conclude1.m and Conclude2.m are used in MBO_Generation_V1.m and MBO_FEs_V1.m, respectively. They are modified according to Dan Simon. The original one is available at http://academic.csuohio.edu/simond/bbo. I hope that this software is as interesting and useful to you as is to me. Feel free to contact me with any comments or questions.

近期下载者

相关文件


收藏者