资源简介

文化算法源程序,其中包括接受函数、选择函数和进化函数

资源截图

代码片段和文件信息

function [ acceptPop ] = accept( Popbetat )
%ACCEPT Summary of this function goes here
%  Detailed explanation goes here
acceptNum=round(size(Pop1)*beta)+round(size(Pop1)*beta/t);
maxLength=size(Pop2);
[aindex]=sort(Pop(:maxLength));
for i=1:acceptNum
    acceptPop(i:)=Pop(index(i):);
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2008-12-19 23:59  文化算法\
     文件         298  2006-02-11 16:46  文化算法\accept.m
     文件        1311  2006-03-25 16:34  文化算法\caep.m
     文件        6676  2006-03-26 09:52  文化算法\func.asv
     文件        6637  2006-03-25 22:06  文化算法\func.m
     文件         537  2006-03-25 15:43  文化算法\init.m
     文件        1338  2006-03-25 15:52  文化算法\offspring.m
     文件        1821  2006-03-25 15:52  文化算法\offspring1.m
     文件        1040  2006-03-25 15:49  文化算法\offspring2.m
     文件        2326  2006-02-27 18:17  文化算法\offspring3.m
     文件         405  2006-02-11 15:06  文化算法\select.m
     文件         644  2005-10-23 22:46  文化算法\update.m

评论

共有 条评论