GA toolbox running error
1 次查看(过去 30 天)
显示 更早的评论
Hi, I want to use genetic algorithm in my code but I get this:" Error running optimization. Too many output arguments ". So, I tried to run the rastriginsfcn which is written on the help file in the optimization toolbox so that I can understand if there is something wrong with my MATLAB or not. I input @rastriginsfcn in Fitness function and 2 in Number of variables and then push the start but it does not work either and I get the same error. Can someone help me out?
0 个评论
回答(2 个)
Alan Weiss
2013-7-24
Please give the exact call you use and the exact exit message. Something like this:
[x,fval] = ga(@rastriginsfcn,2)
On my machine I get, at least for one run:
Optimization terminated: average change in the fitness value less than options.TolFun.
x =
0.9706 0.0063
fval =
1.1202
Alan Weiss
MATLAB mathematical toolbox documentation
0 个评论
Bakrey Bsata
2022-4-17
编辑:Bakrey Bsata
2022-4-17
1- Open ga function as in the screenshot below with right click on ga word

2- check the function it must Open the right one as in the screenshot

and if it opens another one you have to delete or change it's name that function and keep the ga shown above.
3- Repeat the steps until it opens the Correct GA function shown above.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genetic Algorithm 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!