资源简介
利用遗传算法优化BP神经网络,达到很好的权值和阈值

代码片段和文件信息
function [child] = adjswapmutation(parboundsgenInfoOps)
% Adjswap mutation performs a swap of two adjacent
% genes in a permutation
%
% function [newSol] = adjswapmutation(parentboundsOps)
% parent - the first parent ( [solution string function value] )
% bounds - the bounds matrix for the solution space
% Ops - Options for binaryMutation [gen prob_of_mutation]
% Binary and Real-Valued Simulation Evolution for Matlab
% Copyright (C) 1996 C.R. Houck J.A. Joines M.G. Kay
%
% C.R. Houck J.Joines and M.Kay. A genetic algorithm for function
% optimization: A Matlab implementation. ACM Transactions on Mathmatical
% Software Submitted 1996.
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 1 or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details. A copy of the GNU
% General Public License can be obtained from the
% Free Software Foundation Inc. 675 Mass Ave Cambridge MA 02139 USA.
sz = size(par2)-1;
pos = round(rand*(sz-1) + 0.5); %Generate U(1n-1)
child = par;
child(pos:pos+1)=[par(pos+1) par(pos)];
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1419 1998-04-14 13:26 GABP\adjswapMutation.m
文件 1487 1998-04-15 08:46 GABP\arithXover.m
文件 1495 1998-04-14 13:26 GABP\b2f.m
文件 2080 1998-04-14 13:26 GABP\binaryExample.m
文件 1504 1998-04-15 08:48 GABP\binaryMutation.m
文件 1639 1998-04-14 13:26 GABP\boundaryMutation.m
文件 1382 1998-04-14 13:26 GABP\calcbits.m
文件 4761 1998-04-17 09:46 GABP\Contents.m
文件 1451 1998-04-14 13:26 GABP\coranaEval.m
文件 1538 1998-04-14 13:26 GABP\coranaFeval.m
文件 1222 1998-04-14 13:26 GABP\coranaMin.m
文件 1654 1998-04-14 13:26 GABP\cyclicXover.m
文件 256 2010-10-22 10:46 GABP\data2.mat
文件 1471 1998-04-14 13:26 GABP\delta.m
文件 6837 1998-04-28 08:17 GABP\dists.m
文件 1586 1998-04-14 13:26 GABP\EER.m
文件 2348 1998-04-14 13:26 GABP\enhancederXover.m
文件 2118 1998-04-14 13:26 GABP\erXover.m
文件 1501 1998-04-14 13:26 GABP\f2b.m
文件 2322 1998-04-14 13:26 GABP\floatExample.m
文件 2137 1998-04-14 13:26 GABP\floatGradExample.m
文件 10805 1998-04-14 13:26 GABP\ga.m
文件 437 2010-10-19 16:06 GABP\gabpEval.m
文件 2851 2010-10-20 11:24 GABP\GABPNET(全).asv
文件 2790 2010-10-20 11:25 GABP\GABPNET(全).m
文件 3312 2010-10-22 10:38 GABP\GABPNET.asv
文件 3350 2010-10-22 10:46 GABP\GABPNET.m
文件 774 2010-10-19 16:06 GABP\gadecod.m
文件 4213 1998-04-14 13:26 GABP\gademo.m
文件 3887 1998-04-14 13:26 GABP\gademo1.m
............此处省略38个文件信息
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论