搜索资源列表
Python-for-PSO-algorithm
- Python实现的粒子群优化算法源代码,需要引用到Numpy,需要对自定义问题进行优化只需要更改f6函数即可,智能算法本身的参数亦可以自行设定。-Python implementation of the PSO algorithm source code, you need to refer to Numpy, Custom issues need to be optimized to only need to change the f6 function, the smart algorith
pso
- 程序说明: jblzq.m为基本粒子群程序求函数的最大值 lzq2.m是惯性权重法求函数的最大值 lzq3.m是惯性权重法求函数最小值。当然也可以用lzq2.m实现,在函数前加个负号 lzq4.m是收敛因子法求函数最小值 lzq5.m是带变异的惯性权重法求最大值,变异条件比较简单,变异次数多。还有一种变异是利用各粒的最优位置与全局最优位置的差的平方和,再开根号的值小于某一值最为收敛条件,将在我的报告中叙述 lzq6.m是分层粒子群优化算法,即利用两个粒子群同时进行搜索,一
PSO-and-HS--
- 结合粒子群优化算法和和声搜索算法的优点,有效将群智能思想和随机全局搜索相融合,在几个函数优化问题中得到了验证 -Combining particle swarm optimization algorithm and harmony search algorithm advantage, effective will swarm intelligence thought and random global search phase fusion, in several function opt
PSO
- PSO工具,用户只需要定义好自己需要优化的函数(计算最小值或者最大值),并设置好函数自变量的取值范围、每步迭代允许的最大变化量(称为最大速度,Max_V)等,即可自行优化。-PSO tool, users only need to define their own needs optimization function (calculation of minimum or maximum), and set the good function from the range of variable
pso
- 计算给定函数的全局最优位置以及优化极值,并输出结果-Calculating a given function and optimize global best position extremes, and outputs the result
multi_dimensional_pso
- 多维粒子群优化算法,用于求解多维函数的优化问题。-Multidimensional PSO algorithm for solving optimization problems of multidimensional function.
PSO
- 粒子群算法优化函数,取得很好的精度,满足了学习的要求!-Particle swarm optimization function, to achieve good accuracy
manwandiaodu-PSO
- 群微粒算法:本算法用群微粒算法求目标函数的最大值 //本算法使用步骤 // (1)派生自己的群微粒类,类中必须定义double GetFit(PARTICLE&)方法,用来计算每个微粒的适合度 // (2)生成派生类实例,并在构造函数中指明微粒坐标维数和群体个数 // (2)设置微粒坐标上界数组和下界数组,并用SetXup与SetXdown设置微粒坐标上下界 // (3)用SetVmax方法设置微粒最大速度 // (4)设置可选参数:C1,C2,W和通讯函数 // (
PSO
- 粒子群算法优化函数,得到问题的最优解问题。算法非常稳定计算掉落包看到-Particle swarm optimization function to obtain the optimal solution of the problem. Calculation algorithm is very stable package see Drop
pso
- 粒子群算法,也称粒子群优化算法或鸟群觅食算法(Particle Swarm Optimization),缩写为 PSO。它具有精度高,收敛快等优点,广泛用于系统辨识、函数优化等领域。文件pso.m是粒子群算法辨识程序,在此基础上,需要自行编写目标函数计算程序以实现不同系统的参数辨识。(Particle swarm optimization (PSO), also known as particle swarm optimization algorithm or bird swarm foragi
MATLAB粒子群优化算法
- 粒子群优化算法的代码,可以用来自己修改成需要的子函数。(Particle swarm optimization algorithm code can be used to modify their own needs of the sub-function.)
PSO
- 此程序为标准粒子群算法优化一个10维函数的算例,可以运行(Standard particle swarm optimization optimization 10 - dimensional function)