CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 matlab例程 搜索资源 - genetic algorithm and particle swarm

搜索资源列表

  1. GODLIKE

    3下载:
  2. 遗传算法与模拟退火,粒子群算法的结合与比较实验.稍微修改就可以学习应用-Genetic algorithms and simulated annealing, particle swarm optimization algorithm and comparison with experiment. A slight modification can learn the application of
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:287178
    • 提供者:李勤
  1. pso

    0下载:
  2. This an implementation of Particle Swarm Optimization algorithm using the same syntax as the Genetic Algorithm Toolbox, with some additional options specific to PSO. Allows code-reusability when trying different population-based optimization al
  3. 所属分类:matlab

    • 发布日期:2017-03-23
    • 文件大小:4248
    • 提供者:Chris Leung
  1. youhua

    2下载:
  2. 最优化方法及其Matlab程序设计。包括带约束的罚函数法,复合形法,坐标轮换法,乘子法,单纯形法,割平面法,粒子群法,遗传算法等各种优化算法-Optimization method and Matlab programming. Including the penalty function method with constraints, the complex method, coordinate rotation method, the multiplier method, the simp
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:34134
    • 提供者:王浩
  1. Optimization

    0下载:
  2. 详细介绍了优化算法-遗传优化算法和粒子群优化算法,给出了编程过程,-Optimization Algorithms (Genetic Optimization Algorithm and Particle Swarm Optimization Algorithm)are introduced in detail,the programm progress is gived
  3. 所属分类:matlab

    • 发布日期:2017-04-08
    • 文件大小:14907
    • 提供者:whz
  1. liziqun

    0下载:
  2. 分析了软件测试中测试用例自动生成技术的发展现状和粒子群优化算法的基本原理及实现步骤,并详细研究了几种重要的改进的粒子群优化算法。在此基础上,改进了基本粒子群优化算法,提出了基于改进的粒子群优化算法的测试用例自动生成系统框架,并给出了基于改进的粒子群优化算法的测试用例自动生成算法。 最后,采用matlab语言编程实现了基于改进的粒子群优化算法的测试用例自动生成算法,用具体实例对其进行了实验,并对结果数据进行了分析。 本文提出的基于改进的粒子群优化算法的测试用例自动生
  3. 所属分类:matlab

    • 发布日期:2017-12-06
    • 文件大小:1230
    • 提供者:肖宁
  1. GAPSO

    0下载:
  2. 结合遗传算法和粒子群算法的MATLAB程序M文件-M-file MATLAB program combined with genetic algorithm and particle swarm optimization
  3. 所属分类:matlab

    • 发布日期:2017-11-06
    • 文件大小:126077
    • 提供者:sunww
  1. matlab-intelligent-algorithm-cases

    0下载:
  2. 30个以Matlab为基础的智能优化算法程序,包括了遗传算法、粒子群算法等,并且每种算法都有各类的改进算法-30 to Matlab-based intelligent optimization algorithm procedures, including the genetic algorithm, particle swarm optimization, etc., and each algorithm has improved algorithm types
  3. 所属分类:matlab

    • 发布日期:2017-05-07
    • 文件大小:1612348
    • 提供者:NYT
  1. PSO_GA_SVM

    0下载:
  2. 利用遗传算法GA和粒子群算法PSO对SVM进行优化-GA genetic algorithm and particle swarm optimization PSO to optimize the SVM
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:285898
    • 提供者:caoji
  1. intelligence-algorithm

    0下载:
  2. 本程序为智能算法。遗传,粒子群,鱼群,蚁群等多种算法。以及一些实际案例-This program is intelligent algorithms. Genetic, particle swarm, fish, ant colony and many other algorithms. As well as some actual cases
  3. 所属分类:matlab

    • 发布日期:2017-05-08
    • 文件大小:1550164
    • 提供者:huairen
  1. Allocation-algorithm

    2下载:
  2. 基于遗传算法和粒子群算法的认知无线电频谱分配算法-Allocation algorithm based on genetic algorithm and particle swarm optimization of cognitive radio spectrum
  3. 所属分类:matlab

    • 发布日期:2016-03-07
    • 文件大小:7168
    • 提供者:刘晨
  1. GAPSO

    1下载:
  2. 遗传算法与粒子群算法结合对参数进行优化选择,达到最后结果-Genetic algorithm and particle swarm optimization algorithm to the parameters combine to achieve the final result
  3. 所属分类:matlab

    • 发布日期:2017-04-13
    • 文件大小:3187
    • 提供者:罗强
  1. matlab

    0下载:
  2. MATLAB灰色预测,遗传算法,模拟退火,神经网络,粒子群算法等。-MATLAB grey prediction, genetic algorithm, simulated annealing, the neural network and particle swarm optimization (pso) algorithm, etc
  3. 所属分类:matlab

    • 发布日期:2017-04-29
    • 文件大小:48094
    • 提供者:么丝丝
  1. POS

    0下载:
  2. 粒子群算法(PSO)属于进化算法的一种,和模拟退火算法相似,它也是从随机解出发,通过迭代寻找最优解,它也是通过适应度来评价解的品质,但它比遗传算法规则更为简单,它没有遗传算法的“交叉”(Crossover) 和“变异”(Mutation) 操作,它通过追随当前搜索到的最优值来寻找全局最优。这种算法以其实现容易、精度高、收敛快等优点引起了学术界的重视,并且在解决实际问题中展示了其优越性。粒子群算法是一种并行算法。该程序适用于MATLAB中粒子群算法的实现。- Similar to the on
  3. 所属分类:matlab

    • 发布日期:2017-04-12
    • 文件大小:524
    • 提供者:原文宾
  1. Evolutionary-ANFIS-Training

    6下载:
  2. 用MATLAB实现自适应神经模糊推理系统(ANFIS)结构训练。代码中,首先创建一个初始原ANFIS结构,然后采用遗传算法(GA)、粒子群优化(PSO)来训练ANFIS。此进化训练算法可用于解决非线性回归函数逼近问题。-Implementation of adaptive neural fuzzy inference system (ANFIS) based on MATLAB. Code, the first to create an initial original ANFIS struct
  3. 所属分类:matlab

    • 发布日期:2017-05-04
    • 文件大小:21631
    • 提供者:张贝
  1. GA_PSO

    0下载:
  2. 遗传算法和二进制粒子群算法相结合,使遗传算法过早收敛的情况得到改善-The combination of genetic algorithm and binary particle swarm optimization algorithm, the premature convergence of genetic algorithm is improved.
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:3042
    • 提供者:李玥
  1. pso GA PID参数整定

    3下载:
  2. 该程序为微粒群算法与遗传算法求解pid参数整定MATLAB程序,优化结果包含参数输出与参数曲线变化图。(The program solves the PID parameter tuning MATLAB program for particle swarm optimization and genetic algorithm, and the optimization results include parameter output and parameter curve change dia
  3. 所属分类:matlab例程

    • 发布日期:2018-04-30
    • 文件大小:4096
    • 提供者:渔舟煮酒
  1. MATLAB智能算法30个案例分析

    2下载:
  2. 采用案例形式,以智能算法为主线,讲解了遗传算法、免疫算法、退火算法、粒子群算法等最常用的智能算法的MATLAB实现。(Taking the intelligent algorithm as the main line, we explain the MATLAB implementation of the most commonly used intelligent algorithms, such as genetic algorithm, immune algorithm, annealin
  3. 所属分类:matlab例程

    • 发布日期:2018-05-02
    • 文件大小:54317056
    • 提供者:蛋蛋先森
  1. SRC--GA

    0下载:
  2. 多种人工智能算法合集,包含遗传算法和粒子群算法和CSO等等,有较详细的说明。(A variety of artificial intelligence algorithm collection.Including genetic algorithms and particle swarm algorithms and CSO, etc., have a more detailed descr iption.)
  3. 所属分类:matlab例程

    • 发布日期:2018-04-28
    • 文件大小:17408
    • 提供者:飞倔
  1. simulation

    4下载:
  2. 在求解装备的资源约束型装配线一类平衡问题时,借助遗传粒子群算法进行优化求解,并对遗传粒子群算法进行改进,利用matlab程序进行优化求解。本次结果是进行仿真的结果。(When solving the resource-constrained assembly line balance problem of equipment, the genetic particle swarm optimization algorithm is used to optimize the solution, a
  3. 所属分类:matlab例程

    • 发布日期:2019-05-18
    • 文件大小:3072
    • 提供者:echo_dct
  1. GA-PSO算法 2.0版本

    2下载:
  2. 基于遗传算法与粒子群算法的相机标定程序,值得借鉴(The camera calibration program based on genetic algorithm and particle swarm optimization is worthy of reference)
  3. 所属分类:matlab例程

    • 发布日期:2020-06-02
    • 文件大小:6144
    • 提供者:打你你
« 12 3 »
搜珍网 www.dssz.com