mat7labs的个人空间 https://blog.eetop.cn/1631436 [收藏] [复制] [分享] [RSS]

空间首页 动态 记录 日志 相册 主题 分享 留言板 个人资料

日志

蚁群算法搜索个体适应度值

已有 588 次阅读| 2021-12-31 21:47 |系统分类:芯片设计

clc

clear


load data z information 


%起点坐标

starty=5;

starth=3;


%终点坐标

endy=8;

endh=5;


n=10;

m=21;


Best=[];


[path,information]=searchpath(n,m,information,z,starty,starth,endy,endh);  %路径寻找

fitness=CacuFit(path);    %适应度计算

[bestfitness,bestindex]=min(fitness);           %最佳适应度

bestpath=path(bestindex,:);

Best=[Best;bestfitness];


% %更新信息素

rou=0.2;

cfit=100/bestfitness;

k=2;

for i=2:m-1

    information(k,bestpath(i*2-1),bestpath(i*2))=(1-rou)*information(k,bestpath(i*2-1),bestpath(i*2))+rou*cfit;

end

    

    

for kk=1:1:100

    kk

    [path,information]=searchpath(n,m,information,z,starty,starth,endy,endh);  %路径寻找

    fitness=CacuFit(path);    %适应度计算

    [newbestfitness,newbestindex]=min(fitness);           %最佳适应度

    if newbestfitness<bestfitness

        bestfitness=newbestfitness;

        bestpath=path(newbestindex,:);

    end


    

    Best=[Best;bestfitness];

    

    % %更新信息素

    rou=0.2;

    cfit=100/bestfitness;

    k=2;

    for i=2:m-1

        information(k,bestpath(i*2-1),bestpath(i*2))=(1-rou)*information(k,bestpath(i*2-1),bestpath(i*2))+rou*cfit;

    end

    

    

end


for i=1:21

    a(i,1)=bestpath(i*2-1);

    a(i,2)=bestpath(i*2);

end


k=1:21

figure(1)

x=1:21;

y=1:21;

[x1,y1]=meshgrid(x,y);

mesh(x1,y1,z)

load data z information 

axis([1,21,1,21,0,2000])


hold on

plot3(k',a(:,1)',a(:,2)'*200,'--o')



figure(2)

plot(Best)

title('最佳个体适应度变化趋势')

xlabel('迭代次数')

ylabel('适应度值')

————————————————

QQ截图20211231214714.png


点赞

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 注册

  • 关注TA
  • 加好友
  • 联系TA
  • 0

    周排名
  • 0

    月排名
  • 0

    总排名
  • 0

    关注
  • 2

    粉丝
  • 0

    好友
  • 3

    获赞
  • 2

    评论
  • 访问数
关闭

站长推荐 上一条 /1 下一条

小黑屋| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-4-28 17:57 , Processed in 0.014508 second(s), 11 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
返回顶部