please I need Krill herd algorithms in Matlab

 Accepted Answer

Write to the corresponding author of the paper http://www.hindawi.com/journals/mpe/2013/682073/ and ask them for their MATLAB code, as they implemented in MATLAB.

7 Comments

Thank you sir. but where and how ask them
please guide me
And i need matlab code for free search krill herd algialgorithm
Gai-Ge Wang
School of Computer Science and Technology, Jiangsu Normal University, China
Changchun Institute of Optics, Fine Mechanics and Physics, Chinese Academy of Sciences, Changchun, Jilin 130033, China
Thank you sir I am trying to connect with him
Begin
Initialization. Set the generation counter ???? = 1; set the foraging speed ??, maximum diffusion speed ?max,
and the maximum induced speed ?max;
Generate uniformly distributed random population ?0;
Opposition-based population initialization
For ? = 1 to NP do
For ? = 1 to NK do
??
?,? = ?min,? + (?max,? −??,?);
End For
End For
Select the NP fittest individuals from {?0 ∪ ?? 0 } as initial population.
Fitness evaluation. Evaluate each krill individual according to its position.
While the termination criterion is not satisfied or ???? < ??????? Generation do
Sort the population/krill from best to worst.
For ? = 1 : NP (all krill) do
Perform the following motion calculation.
Motion induced by other individuals
Foraging motion
Free search operation
While (? ≤ ?)
Take exploration walks
Modification strategy
EndWhile
Update the krill individual position in the search space.
Evaluate each krill individual according to its new position.
End For
Sort the population/krill from best to worst and find the current best.
???? = ???? + 1.
EndWhile
Post-processing the results and visualization.
End
This is the algorithm II want to code it by using MATLAB 2016a. Please help me to simulate and implement it.
You have
For ? = 1 to NK do
??
The character after the ? is U+FB020 which is in the private use plane, so we do not know what character was intended there.

Sign in to comment.

More Answers (1)

https://www.mathworks.com/matlabcentral/fileexchange/55486-krill-herd-algorithm

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!