码迷,mamicode.com
首页 > 其他好文 > 详细

GA:利用GA对一元函数进行优化过程,求x∈(0,10)中y的最大值——Jason niu

时间:2018-02-25 17:28:50      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:pop   算法   5*   []   tla   曲线   ati   jason   分享   

x = 0:0.01:10;
y =  x + 10*sin(5*x)+7*cos(4*x);

figure
plot(x, y)
xlabel(‘independent variable‘)
ylabel(‘dependent variable‘)
title(‘GA:y = x + 10*sin(5*x) + 7*cos(4*x)利用算法求解最优解—Jason niu‘)


initPop = initializega(50,[0 10],‘fitness‘);  

[x endPop bpop trace] = ga([0 10],‘fitness‘,[],initPop,[1e-6 1 1],‘maxGenTerm‘,25,...
                           ‘normGeomSelect‘,0.08,‘arithXover‘,2,‘nonUnifMutation‘,[2 25 3]);
x
hold on
plot (endPop(:,1),endPop(:,2),‘ro‘)  

figure(2)
plot(trace(:,1),trace(:,3),‘b:‘)
title(‘GA算法的迭代进化曲线—Jason niu‘)
hold on
plot(trace(:,1),trace(:,2),‘r-‘)
xlabel(‘Generation‘); ylabel(‘Fittness‘);
legend(‘Mean Fitness‘, ‘Best Fitness‘)

技术分享图片

 

GA:利用GA对一元函数进行优化过程,求x∈(0,10)中y的最大值——Jason niu

标签:pop   算法   5*   []   tla   曲线   ati   jason   分享   

原文地址:https://www.cnblogs.com/yunyaniu/p/8469594.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!