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

搜索资源列表

  1. cpso

    0下载:
  2. 粒子群优化算法容易理解,实现简单,优化速度快,收敛性强。常用于解决种类最优化问题。-Particle swarm optimization algorithm easy to understand, easy to achieve, and optimize the speed and strong convergence. Types commonly used in the optimization problem to solve.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-31
    • 文件大小:1650
    • 提供者:lxd
  1. pso1

    0下载:
  2. 微粒群算法与其它进化类算法相类似,也采用“群体”与“进化”的概念,同样也是依据个体(微粒)的适应值大小进行操作。所不同的是,微粒群算法不像其它进化算法那样对于个体使用进化算子,而是将每个个体看作是在n维搜索空间中的一个没有重量和体积的微粒,并在搜索空间中以一定的速度飞行。-Particle swarm optimization algorithm with other similar type of evolution, but also the use of " groups"
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-30
    • 文件大小:228803
    • 提供者:sunguili
  1. quickparticleswarm

    1下载:
  2. 改进粒子群算法。较好的全局收敛性。较快的速度。-Improvement of Particle Swarm Optimization. Better global convergence. Faster speed.
  3. 所属分类:matlab

    • 发布日期:2017-04-27
    • 文件大小:24528
    • 提供者:李刚
  1. Swarm_Optimization_Algorithm_with_C

    0下载:
  2. 改进的粒子群算法--自适应粒子群算法,在普通的粒子群算法里面加入了熵和平均粒距的概念,收敛速度大大提高,用C实现-Improved particle swarm- adaptive particle swarm optimization, in which ordinary PSO joined the entropy and the concept of average distance, speed up the convergence, with the C implementation
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-24
    • 文件大小:169971
    • 提供者:翁海冰
  1. bayesianswarm

    0下载:
  2. This code expains bayesian particle swarm optimization method.All files have been written on matlab 2007a. This method has been explianed with various benchmark functions. This optimization method can be directly compared with other unconstrained opt
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-04
    • 文件大小:4291
    • 提供者:missed2010
  1. liziqun

    0下载:
  2. 本程序采用粒子群算法进行计算,粒子群具有速度快的特点。-This procedure is calculated using the particle swarm optimization, PSO has the characteristics of speed.
  3. 所属分类:matlab

    • 发布日期:2017-03-28
    • 文件大小:1028
    • 提供者:
  1. pso_chen

    0下载:
  2. 自己编写的matlab微粒群算法工具箱。微粒群算法(pso)是一种人工智能算法,速度比遗传算法快一些。-I have written matlab PSO toolbox. Particle swarm optimization (pso) is an artificial intelligence algorithm, the speed faster than the genetic algorithm.
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:8036
    • 提供者:chen
  1. liziqunpso

    0下载:
  2. 粒子群算法是一种进化计算技术,来源于对鸟群捕食的思考,最早由Kenney与Eberhart 于1995年提出。在PSO中,寻找最优解被看做群体寻找目标。个体在搜索的过程中具有自己的位置和搜索速度。个体追寻最优个体在解空间中进行搜索。搜索的过程是一个反复的迭代过程。在这个过程中,个体完成的任务一是找寻自己认可的最优解;另个任务是获知群体得到的暂时最优解。 -The particle swarm optimization is an evolutionary computation tech
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-04
    • 文件大小:6287
    • 提供者:刘鹏飞
  1. constrain-opt

    1下载:
  2. 针对工程优化设计问题,提出了基于混沌粒子群算法的工程约束优化问题求解方法。CPSO算法利用混沌搜 索的全局遍历性、随机性和规律性等特点, 引导粒子在全局范围内搜索, 从而克服了传统粒子群算法早熟收敛的缺点。 该算法以种群适应度方差作为粒子群优化算法早熟收敛的判据, 并用惩罚函数法处理违法约束的粒子, 当基本粒子群算 法陷入早熟时, 随机选择粒子群中的部分粒子实施混沌搜索, 直至满足迭代收敛条件为止。CPSO算法能提高种群的多 样性和粒子搜索的遍历性, 从而有效提高了PSO算法的收
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-08
    • 文件大小:745749
    • 提供者:吴胜亮
  1. PSO-and-PSOEM-simulation

    0下载:
  2. 基于扩展记忆的粒子群优化算法(Particle Swarm Optimization based on memory)-This paper combines SVM with improved PSO (Particle Swarm Optimization with Extended Memory, PSOEM) and then builds PSOEM-SVM forecasting model. The PSOEM searches the solution space intelli
  3. 所属分类:matlab

    • 发布日期:2016-10-10
    • 文件大小:12288
    • 提供者:朱盼盼
  1. PSO

    0下载:
  2. 本演示程序模拟了在二维面板上随机排布的任意数量的微粒,向目标聚集的过程。蓝色微粒构成一个微粒群;群落中的个体通过对自身的认知和与其他个体的交互判断飞行的速度和方向,逐步靠近目标。这是一个典型的微粒群优化过程。-This demo program to simulate the random arrangement of any number of particles in the two-dimensional panel, the aggregation process to the targ
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-05
    • 文件大小:17940
    • 提供者:陈晓川
  1. Particle-Swarm-Optimization-method

    0下载:
  2. 本程序采用基本粒子群算法,共有8个测试函数,测试算法对复杂函数的收敛速度和收敛方差-This program uses a Particle Swarm Optimization, a total of eight test functions, test algorithm convergence speed and variance of complex functions
  3. 所属分类:AI-NN-PR

    • 发布日期:2016-11-29
    • 文件大小:8192
    • 提供者:liunan
  1. Apso-bp-Rainfall

    0下载:
  2. 降水短期气候预测是一个非常复杂、重要的研究课题。为了提高其预测能力,拟采用1959—2011 年逐月74 项大气环流特征量序列、月平均500 hPa 高度场和月平均海温场,选取预测因子;用主分量分析方法提取样本数据中主要信息为综合因子。用粒子群优化人工神经网络方法,建立宣城市夏季降水短期气候预测模型。对2007—2011 年宣城市夏季降水预报检验结果表明,粒子群优化人工神经网络收敛速度快,迭代次数少;试报平均绝对误差是66.5 mm,绝对值平均相对误差10.5 ,预测精度高,具有很好的应用推广前
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-08
    • 文件大小:1594707
    • 提供者:mali
  1. FLO

    1下载:
  2. 基于粒子群优化算法的无源模拟滤波器优化设计方法容易陷入局部最优,收敛速度慢迭代次数多、运算量大且稳定性不够好。提出果蝇优化算法对滤波器的整个参数空间进行高效并行搜索直到获得最优的参数值,实例仿真表明,采用该方法设计的滤波器在相同的带宽准确度及阻带衰减的情况下,具有更快的运算速度及收敛性能。-Passive analog filter optimization algorithm based on particle swarm optimization design method is easy
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-27
    • 文件大小:850
    • 提供者:tdy
  1. Opposition-based-Stud-Genet

    0下载:
  2. 为进一步提高螺栓遗传算法的优化效率,加速寻优过程,提出基于对立策略的螺栓遗传算法。该算法在种群初始化阶段和变异阶段均用对立取代随机方式,提高产生解的质量。利用测试函数对算法的效率进行检验,将其与差分算法、遗传算法、粒子群算法和螺栓遗传算法进行对比,结果表明,新算法具有更快的收敛速度和更高的求解精度。-In order to improve the performance of Stud Genetic Algorithm(SGA) and accelerate the convergence s
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-11-16
    • 文件大小:97452
    • 提供者:zhangyan
  1. pso-with-limitation

    0下载:
  2. 带有速度限制和种群限制的粒子群优化算法程序。matlab编写。-Populations with speed limits and restrictions on particle swarm optimization algorithm. matlab prepared.
  3. 所属分类:matlab

    • 发布日期:2017-04-02
    • 文件大小:1017
    • 提供者:姜夏
  1. PSO_0.3-1.bin

    0下载:
  2. This document introduces the Particle Swarm Optimization (PSO) in Scilab. The PSO method, published by Kennedy and Eberhart in 1995, is based on a population of points at first stochastically deployed on a search field. Each member
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-17
    • 文件大小:138519
    • 提供者:ahmad
  1. Optimization-algorithm-of-PSO

    0下载:
  2. 粒子群算法(PSO)是一种基于群体的随机优化技术。与其它基于群体的进化算法相比,它们均初始化为一组随机解,通过迭代搜寻最优解。不同的是:进化计算遵循适者生存原则,而PSO模拟社会。将每个可能产生的解表述为群中的一个微粒,每个微粒都具有自己的位置向量和速度向量,以及一个由目标函数决定的适应度。所有微粒在搜索空间中以一定速度飞行,通过追随当前搜索到的最优值来寻找全局最优值。 -Particle swarm optimization (PSO) is a kind of stochastic opti
  3. 所属分类:matlab

    • 发布日期:2017-04-14
    • 文件大小:3312
    • 提供者:Wang
  1. Multistep-Wind-Speed-Forecasting-Based-on-Wavelet

    0下载:
  2. Considering the randomness and volatility of wind, a method based on B-spline neural network optimized by particle swarm optimization is proposed to predict the short-term wind speed
  3. 所属分类:Data Mining

    • 发布日期:2017-05-09
    • 文件大小:2032746
    • 提供者:Ephraim Admassu
  1. SAPSO

    1下载:
  2. 粒子群改进算法,基本粒子群算法,加快粒子群算法效率(Particle swarm optimization algorithm, particle swarm optimization algorithm to speed up the efficiency of particle swarm optimization algorithm)
  3. 所属分类:matlab例程

    • 发布日期:2020-11-03
    • 文件大小:1024
    • 提供者:叶子0010
« 12 »
搜珍网 www.dssz.com