搜索资源列表
spso1
- 用c#编写的随机微粒群算法的源程序代码,希望对大家有所帮助!-prepared using random particle swarm algorithm source code, we want to help!
PatialExuation
- 基于VB语言的微粒群算法,其中含有几个测试算法,和一个化学中数据关联的例子,微粒群算法是以一个通用的函数写的,可移植性强。-VB language based on the PSO algorithm, which contains several test algorithm, and a chemical linked to the data example, PSO is a generic function to write the transfer is strong.
SPSOfc
- 应用随机微粒群算法求解一个六元的非线性方程组.
SCPSOfc
- 使用协同微粒群和随机微粒群结合的算法求解一个六元的非线性方程组.
pso
- 微粒群优化算法,可以应用在不同的领域,这是一个核心代码,可根据不同的应用领域进行扩展。-Particle swarm optimization algorithm, can be applied in different fields, this is a core of code, according to different application areas expand.
SIALAB
- 此代码是有关群智能优化算法的集合平台,集成了遗传算法、微粒群算法和蚁群算法的BenchMark优化问题以及TSP问题的求解。-This code is related to group a collection of intelligent optimization algorithm platform, integrating the genetic algorithm, particle swarm optimization and ant colony optimization algor
pso
- 群微粒算法,本算法用群微粒算法求解目标函数的最大值-Group particle algorithm, the algorithm groups particles with the maximum objective function algorithm
manwandiaodu-PSO
- 群微粒算法:本算法用群微粒算法求目标函数的最大值 //本算法使用步骤 // (1)派生自己的群微粒类,类中必须定义double GetFit(PARTICLE&)方法,用来计算每个微粒的适合度 // (2)生成派生类实例,并在构造函数中指明微粒坐标维数和群体个数 // (2)设置微粒坐标上界数组和下界数组,并用SetXup与SetXdown设置微粒坐标上下界 // (3)用SetVmax方法设置微粒最大速度 // (4)设置可选参数:C1,C2,W和通讯函数 // (