资源简介
ga优化神经网络的权值阈值的matlab程序,值得借鉴。

代码片段和文件信息
function [c1c2] = arithXover(p1p2boundsOps)
% Arith crossover takes two parents P1P2 and performs an interpolation
% along the line formed by the two parents.
%
% function [c1c2] = arithXover(p1p2boundsOps)
% p1 - the first parent ( [solution string function value] )
% p2 - the second parent ( [solution string function value] )
% bounds - the bounds matrix for the solution space
% Ops - Options matrix for arith crossover [gen #ArithXovers]
% 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.
% Pick a random mix amount
a = rand;
% Create the children
c1 = p1*a + p2*(1-a);
c2 = p1*(1-a) + p2*a;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1487 1998-04-15 08:46 GA优化BP权阈值\GA优化BP权阈值\arithXover.m
文件 1471 1998-04-14 13:26 GA优化BP权阈值\GA优化BP权阈值\delta.m
文件 10805 1998-04-14 13:26 GA优化BP权阈值\GA优化BP权阈值\ga.m
文件 323 2009-07-16 19:48 GA优化BP权阈值\GA优化BP权阈值\gabpEval.m
文件 783 2009-11-11 14:51 GA优化BP权阈值\GA优化BP权阈值\gadecod.m
文件 962 2009-11-03 10:13 GA优化BP权阈值\GA优化BP权阈值\gafault.m
文件 1550 2009-07-16 19:06 GA优化BP权阈值\GA优化BP权阈值\ga函数说明.txt
文件 3417 2009-07-07 10:01 GA优化BP权阈值\GA优化BP权阈值\initializega.m
文件 1345 1998-04-14 13:26 GA优化BP权阈值\GA优化BP权阈值\maxGenTerm.m
文件 1318 2009-11-13 16:49 GA优化BP权阈值\GA优化BP权阈值\Mytest.asv
文件 1238 2009-11-13 17:02 GA优化BP权阈值\GA优化BP权阈值\Mytest.m
文件 620 2009-11-03 10:12 GA优化BP权阈值\GA优化BP权阈值\nninit.m
文件 2190 1998-04-15 08:52 GA优化BP权阈值\GA优化BP权阈值\nonUnifMutation.m
文件 2308 1998-04-14 13:26 GA优化BP权阈值\GA优化BP权阈值\normGeomSelect.m
文件 1459 1998-04-14 13:26 GA优化BP权阈值\GA优化BP权阈值\parse.m
文件 6256 2009-11-11 15:24 GA优化BP权阈值\GA优化BP权阈值\qwe.mat
文件 11892 2009-11-02 11:11 GA优化BP权阈值\GA优化BP权阈值\tzk.mat
目录 0 2009-11-11 15:12 GA优化BP权阈值\GA优化BP权阈值
目录 0 2010-09-30 08:45 GA优化BP权阈值
----------- --------- ---------- ----- ----
49424 19
- 上一篇:短时傅里叶变换的matlab实现
- 下一篇:matlab中step的用法
相关资源
- 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
评论
共有 条评论