资源简介

股票板块预测 小波神经网络 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 

% Pick a random mix amount
a = rand;

% Create the children
c1 = p1*a     + p2*(1-a);
c2 = p1*(1-a) + p2*a; 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        637  2011-04-13 12:37  Ga_Wavelet_Net\arithXover.m

     文件      45239  2011-06-11 10:01  Ga_Wavelet_Net\compact_section_day_matrix.mat

     文件        621  2011-04-13 12:47  Ga_Wavelet_Net\delta.m

     文件         41  2011-06-10 21:43  Ga_Wavelet_Net\divp.m

     文件         41  2011-06-10 21:46  Ga_Wavelet_Net\divq.m

     文件        137  2011-06-07 10:32  Ga_Wavelet_Net\dmorlet.m

     文件      20480  2011-06-02 18:03  Ga_Wavelet_Net\fi_matrix_column_sum_x.mexw32

     文件       9806  2011-05-16 09:24  Ga_Wavelet_Net\ga.m

     文件        366  2011-06-06 18:52  Ga_Wavelet_Net\gabpEval_test.m

     文件       1007  2012-04-19 15:44  Ga_Wavelet_Net\gadecod_test.asv

     文件       1007  2012-04-19 15:48  Ga_Wavelet_Net\gadecod_test.m

     文件       5390  2012-06-07 14:46  Ga_Wavelet_Net\GA_Wnn_test.asv

     文件       5390  2012-06-07 14:46  Ga_Wavelet_Net\GA_Wnn_test.m

     文件       1550  2009-07-16 19:06  Ga_Wavelet_Net\ga函数说明.txt

     文件       7884  2011-05-14 10:04  Ga_Wavelet_Net\get_0_1_matrix_from_sh_sz_stock.asv

     文件       7880  2011-06-11 09:56  Ga_Wavelet_Net\get_0_1_matrix_from_sh_sz_stock.m

     文件       1199  2011-05-14 21:20  Ga_Wavelet_Net\get_section_name.asv

     文件       1306  2011-05-16 10:43  Ga_Wavelet_Net\get_section_name.m

     文件        648  2011-04-28 08:23  Ga_Wavelet_Net\humps.m

     文件       2566  2011-04-14 10:09  Ga_Wavelet_Net\initializega.m

     文件      64906  2011-06-11 10:01  Ga_Wavelet_Net\matrix.mat

     文件        206  2011-05-03 09:54  Ga_Wavelet_Net\matrix_simplified.mat

     文件        436  2011-04-13 12:32  Ga_Wavelet_Net\maxGenTerm.m

     文件         60  2011-06-07 10:29  Ga_Wavelet_Net\morlet.m

     文件         43  2011-06-10 11:10  Ga_Wavelet_Net\multip.m

     文件       6537  2012-06-07 14:46  Ga_Wavelet_Net\nninit_test.asv

     文件       6537  2012-06-07 14:48  Ga_Wavelet_Net\nninit_test.m

     文件       1473  2011-04-13 12:39  Ga_Wavelet_Net\nonUnifMutation.m

     文件       1570  2011-04-13 12:36  Ga_Wavelet_Net\normGeomSelect.m

     文件        608  2011-04-13 12:49  Ga_Wavelet_Net\parse.m

............此处省略45个文件信息

评论

共有 条评论