搜索资源列表
xujinpeng-matlab.rar
- 遗传算法编程求解旅行商问题;图论中最短路问题的Matlab程序实现;背包问题模型的Matlab程序实现。,Genetic Algorithm for Solving Traveling Salesman Problem programming graph theory, shortest path problem in the Matlab program implementation knapsack problem Matlab model implementation process.
2008101523144260
- 一、用GA直接训练BP网络的权重算法 主程序:gafault.m 它包括以下子程序: 1. BP网络初始化:nninit.m――给出P,T,R,S1,S2; 2. 适应值计算函数:gabpEval.m; 3.将遗传算法的编码解码为BP网络所对应的权值、阈值函数:gadecod.m; 二、用GA先求BP网络的权重,再用纯BP直接训练BP的混合GA-BP算法 主程序:gabpfault.m 它包括以下子程序: 1. 网络初始化:nninit.m――给出P,T,
fitnessfunction
- 线性二次最优控制加权阵遗传算法优化适应度函数m文件;模糊控制器量化比例因子遗传算法优化适应度函数m文件-Linear quadratic optimal control weighted array genetic algorithm fitness function m documents quantization scale factor of fuzzy controller optimized by GA fitness function m file
MATLAB-for-solving-differential
- MATLAB解微分方程;遗传算法工具箱;laplace偏微分方程求解;-MATLAB for solving differential equations genetic algorithm toolbox laplace partial differential equations
gatbx
- 遗传算法程序包; 安装: 1、解压gatbx-origin.zip,得到DOC和SRC文件夹; 2、拷贝SRC到Matlab安装目录下的toolbox文件夹中,并将SRC更名为gatbx; 3、打开toolbox\local\目录下的pathdef.m文件(programme of genetic algorithm)
遗传算法优化神经网络matlab源码
- 此程序实现了利用遗传算法优化BP神经网络,内含matlab源码及遗传算法工具包。亲测可用(This program implements the use of genetic algorithms to optimize the BP neural network, including Matlab source code and genetic algorithm toolkit. Pro test available)
genetic
- 实现遗传算法,设置一个函数,利用遗传算法多次迭代求取其近似最值。(Genetic algorithm, set a function, the use of genetic algorithm many iterations to find its approximate maximum.)
免疫算法
- 免疫算法,与遗传算法相似,只是多用了一个免疫函数;免疫算法是遗传算法的变体,它不用杂交,而是采用注入疫苗的方法。(Immune algorithm, similar to the genetic algorithm, but the use of an immune function; immune algorithm is a variant of genetic algorithms, it does not hybrid, but the use of vaccination method
旅行商问题
- 基于遗传算法求解旅行商问题,程序中随机设置了城市点出现的情况。(Genetic algorithm based travel salesman problem, the program randomly set up the city point of view.)
用MATLAB实现遗传算法程序.pdf
- 遗传算法的基本步骤如下: 1)在一定编码方案下,随机产生一个初始种群; 2)用相应的解码方法,将编码后的个体转换成问 题空间的决策变量,并求得个体的适应值; 3)按照个体适应值的大小,从种群中选出适应值 较大的一些个体构成交配池; 4)由交叉和变异这两个遗传算子对交配池中的 个体进行操作,并形成新一代的种群; 5)反复执行步骤2-4,直至满足收敛判据为止。(The basic steps of the genetic algorithm are as follows: 1) u
GA-BPNN
- 遗传算法优化BP神经网络-非线性函数拟合(BP neural network optimized by genetic algorithm for nonlinear function fitting)
yichuansuanfawugong
- 遗传算法(genetic algorithm,GA)是一种近年来发展起来的基于自然选择规律的进化算法,本程序利用改进型遗传算法对电力系统进行无功优化,与遗传算法进行比较,通过实际算例分析及MATLAB编程结果运行,成功解决了无功优化问题,并验证了改进型遗传算法的优越性。(The genetic algorithm (genetic algorithm GA) is an evolutionary algorithm based on natural selection rules develop
GATest_src
- 用遗传算法求解函数最大值的matlab程序(Solving the maximum function of function by genetic algorithm)
遗传算法
- 利用遗传算法计算目标函数极值,遗传算法与传统的优化方法(枚举,启发式等)相比较,以生物进化为原型,具有很好的收敛性,在计算精度要求时,计算时间少,鲁棒性高等都是它的优点。(Using the genetic algorithm to calculate the extremum of a objective function. Compared with the traditional optimization methods (enumeration, heuristics, etc.), g
遗传算法VRP
- 本资料解决带有时间窗的车辆路径问题,希望与大家进行分享与交流。(The problem of vehicle routing with time windows is solved.)
GA
- 使用遗传算法,得到带恶化的置换车间的最佳调度(A genetic algorithm is used to get the best scheduling for a deteriorating replacement workshop)
pso GA PID参数整定
- 该程序为微粒群算法与遗传算法求解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
Desktop
- 利用智能算法可以求最值,以及利用小波变换可以求功率(Intelligent algorithm seeks the most value and uses wavelet transform to find power.)
Elman神经网络预测电力负载
- Elman神经网络建立建筑物电力负荷预测模型中遇到的几个关键问题有,数据归一化处理、输入输出样本的选取、隐含层节点数的确定;分别建立Elman神经网络模型,并利用某栋建筑物实际历史电力负载数据进行预测,分析比较与实际数据值的预测精度,得出了一个有效的数据预测模型。(Several key problems encountered in building power load forecasting model based on Elman neural network are data norm
遗传算法
- 遗传算法以一种群体中的所有个体为对象,并利用随机化技术指导对一个被编码的参数空间进行高效搜索。其中,选择、交叉和变异构成了遗传算法的遗传操作;参数编码、初始群体的设定、适应度函数的设计、遗传操作设计、控制参数设定五个要素组成了遗传算法的核心内容。(Genetic algorithm takes all individuals in a group as objects, and uses randomized technology to guide efficient search of a c