![遺傳算法源程序_第1頁(yè)](http://file4.renrendoc.com/view/0b92078761fa7a3c5e4cfe6dce91379c/0b92078761fa7a3c5e4cfe6dce91379c1.gif)
![遺傳算法源程序_第2頁(yè)](http://file4.renrendoc.com/view/0b92078761fa7a3c5e4cfe6dce91379c/0b92078761fa7a3c5e4cfe6dce91379c2.gif)
![遺傳算法源程序_第3頁(yè)](http://file4.renrendoc.com/view/0b92078761fa7a3c5e4cfe6dce91379c/0b92078761fa7a3c5e4cfe6dce91379c3.gif)
![遺傳算法源程序_第4頁(yè)](http://file4.renrendoc.com/view/0b92078761fa7a3c5e4cfe6dce91379c/0b92078761fa7a3c5e4cfe6dce91379c4.gif)
![遺傳算法源程序_第5頁(yè)](http://file4.renrendoc.com/view/0b92078761fa7a3c5e4cfe6dce91379c/0b92078761fa7a3c5e4cfe6dce91379c5.gif)
下載本文檔
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
遺傳算法源程序functionGenetic(StrAimFunc)%Thisissimplegeneticalgorithm(SGA)%Inthisfunction,itfulfilsgeneticalgorithm%Thesecanbemodifiedasyoulikemaxgen=200;sizepop=100;AimFunc=StrAimFunc;countingfitnessfselect='roulette';'tournament';'roulette'fcode='grey';'float';'grey';'binary'pcross=[0.6];crossover,between0and1fcross='uniform';'float';'simple';'uniform'pmutation=[0.2];mutation,between0and1fmutation='simple';'float';'simple';lenchrom=[1010101010];variblebound=[01;...01;...01;...01;...01];%%maximumgeneration%sizeofpopulation%thisisfunctionof%methodofselect%youcanchoose%methodofcoding%youcanchoose%probablityof%methodofcrossover%youcanchoose%probabilityof%methodofmutation%youcanchoose%lengthofbitofeveryindividuals=struct('fitness',zeros(1,sizepop),...%'value',zeros(1,sizepo%structure%structureofpopulation%averagefitnessof'chrom',[]);avgfitness=[];population%bestfitnessofpopulation%chromosomeof%bestfitnessofpopulation%chromosomeofbest%producenewpopulationatrandomindividuals.chrom(i,:)=Code(lenchrom,fcode,bound);x=Decode(lenchrom,bound,individuals.chrom(i,:),fcode);%caculatefitness%修改處%individuals.fitness(i)=AimFunc(x,heli,id_data,0);individuals.fitness(i)=feval(AimFunc,x);end%findminimumvaluewhichisbest[bestfitnessbestindex]=min(individuals.fitness);bestchrom=individuals.chrom(bestindex,:);avgfitness=sum(individuals.fitness)/sizepop;%recordaverageandbestfitnessofeverygenerationtrace=[avgfitnessbestfitness];%evolutionbeginfori=1:maxgen%selectionindividuals=Select(individuals,sizepop,fselect);avgfitness=sum(individuals.fitness)/sizepop;%crossoverindividuals.chrom=Cross(pcross,lenchrom,individuals.chrom,...sizepop,fcross,[imaxgen]);%mutationindividuals.chrom=Mutation(pmutation,lenchrom,individuals.chrom,.sizepop,fmutation,[imaxgen],bound);%calculatefitnessforj=1:sizepopx=Decode(lenchrom,bound,individuals.chrom(j,:),fcode);%修改處%individuals.fitness(j)=AimFunc(x,heli,id_data,0);individuals.fitness(j)=feval(AimFunc,x);end%substitutechromosomeofworestfitness%findminimumvaluewhichisbest[newbestfitness,newbestindex]=min(individuals.fitness);[worestfitness,worestindex]=max(individuals.fitness);%substitutechromosomeofworestfitnessifbestfitness>newbestfitnessbestfitness=newbestfitness;bestchrom=individuals.chrom(newbestindex,:);endindividuals.chrom(worestindex,:)=bestchrom;individuals.fitness(worestindex)=bestfitness;avgfitness=sum(individuals.fitness)/sizepop;trace=[trace;avgfitnessbestfitness];endend%drawfitnessofeverygenerationhfig=findobj('Tag','trace');%Seeifitisopenifishandle(hfig)figure(hfig);elsehfig=figure('Tag','trace');endfigure(hfig);[rc]=size(trace);plot([1:r]',trace(:,1),'r-',[1:r]',trace(:,2),'b--');title(['適應(yīng)度曲線’'終止代數(shù)='num2str(maxgen)]);xlabel('進(jìn)化代數(shù)');ylabel(適應(yīng)度');legend('平均適應(yīng)度','最佳適應(yīng)度');disp(適應(yīng)度變量');x=Decode(lenchrom,bound,bestchrom,fcode);%showincommandwindowdisp([bestfitnessx]);%functionret=Code(lenchrom,opts,bound)%Inthisfunction,itconvertsasetvariblesintoachromosome%lenchrominput:lengthofchromosome%optsinput:tagofcodingmethod%boundinput:boundaryofvaribles%retoutput:chromosomeswitchoptscase'binary'%binarycodingpick=rand(1,sum(lenchrom));bits=ceil(pick-0.5);temp=sum(lenchrom)-1:-1:0;ret=sum(bits.*(2.Atemp));case'grey'%greycodingpick=rand(1,sum(lenchrom));bits=ceil(pick-0.5);greybits=bits;fori=2:length(greybits)greybits(i)=bitxor(bits(i-1),bits(i));endtemp=sum(lenchrom)-1:-1:0;ret=sum(greybits.*(2.Atemp));case'float'%floatcodingpick=rand(1,length(lenchrom));ret=bound(:,1)'+(bound(:,2)-bound(:,1))'.*pick;end%functionret=Decode(lenchrom,bound,code,opts)%Inthisfunction,itdecodechromosome%lenchrominput:lengthofchromosome%optsinput:tagofcodingmethod%boundinput:boundaryofvaribles
%retoutput:valueofvariblesswitchoptscase'binary'%binarycodingfori=length(lenchrom):-1:1data(i)=bitand(code,2Alenchrom(i)-1);code=(code-data(i))/(2Alenchrom(i));endret=bound(:,1)'+data./(2.Alenchrom-1).*(bound(:,2)-bound(:,1))';case'grey'%greycodingfori=sum(lenchrom):-1:2code=bitset(code,i-1,bitxor(bitget(code,i),bitget(code,i-1)));endfori=length(lenchrom):-1:1data(i)=bitand(code,2Alenchrom(i)-1);code=(code-data(i))/(2Alenchrom(i));endret=bound(:,1)'+data./(2.Alenchrom-1).*(bound(:,2)-bound(:,1))';case'float'%floatcodingret=code;end%functioninputinputinputinputinput:probabilityofmutation:lengthofachromosome:setofallchromosomes:sizeofpopulation:tagforchoosingmethodofcrossoverinputinputinputinputinput:probabilityofmutation:lengthofachromosome:setofallchromosomes:sizeofpopulation:tagforchoosingmethodofcrossoverinput:currentserialnumberofgenerationandgemerationoutput:newsetofchromosomecase'simple'%mutationatsinglepositionfori=1:sizepop%selectchildatrandompick=rand;whilepick==0pick=rand;endindex=ceil(pick*sizepop);pick=rand;ifpick>pmutationcontinue;end%mutationpositionpick=rand;whilepick==0pick=rand;endpos=ceil(pick*sum(lenchrom));v=bitget(chrom(index),pos);v=~v;chrom1=bitset(chrom(index),pos,v);endret=chrom;case'float'%multiplepositionmutationfori=1:sizepop%selectchildatrandompick=rand;whilepick==0pick=rand;endindex=ceil(pick*sizepop);pick=rand;ifpick>pmutationcontinue;end%mutationpositionpick=rand;whilepick==0pick=rand;endpos=ceil(pick*sum(lenchrom));v=chrom(i,pos);v1=v-bound(pos,1);v2=bound(pos,2)-v;pick=rand;ifpick>0.5delta=v2*(1-pickA((1-pop(1)/pop(2))A2));chrom(i,pos)=v+delta;elsedelta=v1*(1-pickA((1-pop(1)/pop(2))A2));chrom(i,pos)=v-delta;endendret=chrom;end%functionret=select(individuals,sizepop,opts)%Inthisfunction,itfulfilsaselectionamongchromosomes%individualsinput:setofindividuals%sizepopinput:sizeofpopulation%optsinput:tagforchoosingmethodofselection%retoutput:newsetofindividualsswitchoptscase'roulette'%roulettewheelmodelsumfitness=sum(1./individuals.fitness);sumf=(1./individuals.fitness)./sumfitness;index=[];fori=1:sizepoppick=rand;whilepick==0pick=r
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 培養(yǎng)跨行業(yè)技能的重要性計(jì)劃
- 七年級(jí)下冊(cè)《幾何圖形與圖文信息問(wèn)題》課件與練習(xí)
- 2025年氣體摻混設(shè)備項(xiàng)目建議書(shū)
- 2025年中文信息處理平臺(tái)項(xiàng)目發(fā)展計(jì)劃
- 2025年衛(wèi)星數(shù)據(jù)采集系統(tǒng)項(xiàng)目發(fā)展計(jì)劃
- 2025年EMI屏蔽材料項(xiàng)目發(fā)展計(jì)劃
- 冷鏈物流溫度監(jiān)控實(shí)施細(xì)節(jié)
- 電影制作與發(fā)行合作框架
- 2025年活性白土項(xiàng)目建議書(shū)
- 案場(chǎng)物業(yè)經(jīng)理年終工作總結(jié)
- 連續(xù)性腎替代治療抗菌藥物劑量調(diào)整專家共識(shí)(2024年版)解讀
- 腦梗死臨床表現(xiàn)護(hù)理
- 新高考英語(yǔ)|語(yǔ)法專項(xiàng)之括號(hào)法突破長(zhǎng)難句 講解課件-2025屆高三英語(yǔ)上學(xué)期一輪復(fù)習(xí)專項(xiàng)
- 《光通信技術(shù)簡(jiǎn)介》課件
- 2024年廣西區(qū)公務(wù)員錄用考試《行測(cè)》真題及答案解析
- 健康體檢基礎(chǔ)知識(shí)培訓(xùn)
- 【課件】Unit+6+section+B+1a~2b+課件人教版七年級(jí)英語(yǔ)上冊(cè)
- Unit 3 We should obey the rules.Lesson 13(教學(xué)設(shè)計(jì))-2023-2024學(xué)年人教精通版英語(yǔ)五年級(jí)下冊(cè)
- 2024年平面設(shè)計(jì)師技能及理論知識(shí)考試題庫(kù)(附含答案)
- 2024年農(nóng)業(yè)農(nóng)村基礎(chǔ)知識(shí)考試題庫(kù)(附答案)
- 2023新一代變電站二次系統(tǒng)技術(shù)規(guī)范第3部分:綜合應(yīng)用主機(jī)
評(píng)論
0/150
提交評(píng)論