代码搜索:Select

找到约 10,000 项符合「Select」的源代码

代码结果 10,000
www.eeworm.com/read/458772/7289612

m select.m

function ret=select(individuals,sizepop,opts) % 本函数对每一代种群中的染色体进行选择,以进行后面的交叉和变异 % individuals input : 种群信息 % sizepop input : 种群规模 % opts input : 选择方法的选择 % ret output : 经过选择后的
www.eeworm.com/read/457690/7320943

dsp select.dsp

# Microsoft Developer Studio Project File - Name="Select" - Package Owner= # Microsoft Developer Studio Generated Build File, Format Version 6.00 # ** DO NOT EDIT ** # TARGTYPE "Win32 (x86) Co
www.eeworm.com/read/457690/7320944

plg select.plg

Build Log --------------------Configuration: Select - Win32 Debug-------------------- Command Lines Results Select.exe - 0 erro
www.eeworm.com/read/457690/7320945

cpp select.cpp

#include "../comm/initsock.h" #include CInitSock initSock; int main() { USHORT nPort = 4567; //此服务器监听的端口号 //创建监听套接字 SOCKET sListen = ::socket(AF_INET, SOCK_STREAM, IPPROTO_TC
www.eeworm.com/read/457296/7328537

cur select.cur

www.eeworm.com/read/457219/7331807

c select.c

/* * GENESIS Copyright (c) 1986, 1990 by John J. Grefenstette * This program may be freely copied for educational * and research purposes. All other rights reserved. * * file: select
www.eeworm.com/read/457219/7332130

m select.m

function [out]=select(in,d,x,y) % % out=select(in); % % selects a new population % % % % Mix up the population % chrom=shuffle(in); % % Decode the existing population % coefs=decodal
www.eeworm.com/read/457186/7333091

m select.m

function popnew=select(pop,q,n) %选择函数 %pop为待选择原始种群 %q为每个个体适应度累计概率,即赌轮区间,n为种群个体数 m=1; for k=1:n r=rand(); for l=2:n if (q(l-1)
www.eeworm.com/read/456844/7338885

m select.m

function y=select(p,fit) if p==0 y=1;return; end x=p*sum(fit); y=0; s=0; while x>s y=y+1; s=sum(fit(1:y)); end
www.eeworm.com/read/455754/7366352

asv select.asv

function s0=select(X0,adapt_value0) %选择算子 total_adapt_value0=0; for i=1:10 total_adapt_value0=total_adapt_value0+adapt_value0(i); end adapt_value00=adapt_value0