登录
首页 » matlab » ABC算法

ABC算法

于 2020-06-23 发布 文件大小:56KB
0 263
下载积分: 1 下载次数: 3

代码说明:

  matlab语言的人工蜂群算法,包括最初版本和改进版两版(Matlab language artificial bee colony algorithm, including the initial version and the improved version)

文件列表:

ABC算法\ABC_MATLAB 第一版\calculateFitness.m, 182 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\GreedySelection.m, 965 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\griewank.m, 202 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\griewank_web.mat, 38990 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\rastrigin.M, 578 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\rosenbrock.M, 622 , 2019-04-15
ABC算法\ABC_MATLAB 第一版\runABC.m, 4706 , 2019-04-26
ABC算法\ABC_MATLAB 第一版\Sphere.m, 73 , 2019-04-15
ABC算法\MATLAB ABC改进版\ackley.m, 365 , 2019-04-15
ABC算法\MATLAB ABC改进版\all.mat, 11130 , 2019-04-15
ABC算法\MATLAB ABC改进版\calculateFitness.m, 182 , 2019-04-15
ABC算法\MATLAB ABC改进版\griewank.m, 202 , 2019-04-15
ABC算法\MATLAB ABC改进版\rastrigin.m, 512 , 2019-04-15
ABC算法\MATLAB ABC改进版\rosenbrock.m, 572 , 2019-04-15
ABC算法\MATLAB ABC改进版\runABC.m, 7749 , 2019-04-15
ABC算法\MATLAB ABC改进版\schwefel.m, 447 , 2019-04-15
ABC算法\MATLAB ABC改进版\Sphere.m, 73 , 2019-04-15
ABC算法\ABC_MATLAB 第一版, 0 , 2019-07-18
ABC算法\MATLAB ABC改进版, 0 , 2019-07-18
ABC算法, 0 , 2019-07-18

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • no21
    STK的二次开发,本例采用Matlab连接STK。实例调试通过。(STK secondary development, which in this case the use of Matlab to connect STK. Examples of debug through.)
    2021-01-20 14:48:41下载
    积分:1
  • TVL1_HCS_v1
    TVL1重建从混合压缩采样,rice大学泊松分布图像重建与全变分正规化的代码(Note: (1)Fore small-scale data, hybrid sampling consists of Bernoulli random sampling and low-resolution sampling (TVL1_HCS) (1)Fore large-scale data, hybrid sampling consists of Fourier radial sampling and low-frequency sampling (TV_RecPF) Copyright (C) 2010 Xianbiao Shu, Computer Vision and Robotics Lab, University of Illinois at Urbana-Champaign. Acknowledgement: RecPF (Rice University) PDCO (Stanford University) Twister (MIT) Reference: X. Shu, N. Ahuja, Hybrid Compressive Sampling via a New Total Variation TVL1, In Proceedings of ECCV 2010. Usage: >> run_me_first >>[Im_rec, PSNR_est1,PSNR_est2] = TVL1L2_HCS_test( Ball1_32.bmp , 0.35,3) >>[Im_rec, PSNR_est1,PSNR_est2] = TVL1L2_HCS_test( Ball1_32.bmp , 0.35,3) >>[Im_rec, PSNR1, PSNR2, G_error, Ratio] = TV_RecPF_test( Chest.png , 5, 10, 0, 1e-10, 0) )
    2011-04-20 22:47:01下载
    积分:1
  • Delta-Modulation-(DM)
    Delta Modulation (DM)
    2011-09-07 19:46:12下载
    积分:1
  • MATLAB7[1].03
    学习matlab的好资料第3部分,再此共享下啦。参考参考(Good information to learn matlab Part 3, then under this shared friends. Reference Reference)
    2011-09-28 11:02:21下载
    积分:1
  • DataAndComputerCommunication
    本文件包含了William Stallings编写的优秀教材Data and Computer communications的中文影印版,以及书中的课后习题答案(This document contains the William Stallings excellent teaching materials prepared by Data and Computer communications photocopy version of the Chinese, as well as after-school book answer Exercises)
    2009-12-15 19:11:05下载
    积分:1
  • code
    CMI和AMI编解码过程,并且写成GUI,编译环境是matlab2014b.(CMI and AMI encoding and decoding process, and write GUI, build environment is matlab2014b.)
    2015-01-14 09:36:34下载
    积分:1
  • Time-frequency-atom-
    时频原子分解算法利用冗余特性分解成多个时频原子库来进行信号特征的处理分析(Time-frequency atom decomposition algorithm using redundant features broken down into processing and analysis the multiple frequency atoms library to signal characteristics)
    2012-09-24 17:18:35下载
    积分:1
  • Lab_Assignment4
    matlab 实验wewqdeqwdwqd(matlab test ssx csacs)
    2011-11-21 20:09:52下载
    积分:1
  • 16QAM
    matlab ofam 16qam 信道仿真(matlab ofam 16qam )
    2010-05-10 16:14:58下载
    积分:1
  • ga
    说明:  GA算法代码 function pop=initpop(popsize,chromlength) pop=round(rand(popsize,chromlength)) rand 随机产生每个单元为 {0,1} 行数为 popsize,列数为 chromlength 的矩阵, roud 对矩阵的每个单元进行圆整。这样产生的初始种群。 2.2 计算目标函数值 2.2.1 将二进制数转化为十进制数(1) 遗传算法子程序 Name: decodebinary.m 产生 [2^n 2^(n-1) ... 1] 的行向量,然后求和,将二进制转化为十进制(GA algorithm code function pop=initpop(popsize,chromlength) pop=round(rand(popsize,chromlength)) rand 随机产生每个单元为 {0,1} 行数为 popsize,列数为 chromlength 的矩阵, roud 对矩阵的每个单元进行圆整。这样产生的初始种群。 2.2 计算目标函数值 2.2.1 将二进制数转化为十进制数(1) 遗传算法子程序 Name: decodebinary.m 产生 [2^n 2^(n-1) ... 1] 的行向量,然后求和,将二进制转化为十进制)
    2012-04-28 18:02:03下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载