代码搜索:performs
找到约 4,693 项符合「performs」的源代码
代码结果 4,693
www.eeworm.com/read/119820/14820227
m tournselect.m
function[newPop] = tournSelect(oldPop,options)
% Performs a tournament selection.
%
% function[newPop] = tournSelect(oldPop,options)
% newPop - the new population selected from the oldPop
% oldPop -
www.eeworm.com/read/119281/14834612
m tournselect.m
function[newPop] = tournSelect(oldPop,options)
% Performs a tournament selection.
%
% function[newPop] = tournSelect(oldPop,options)
% newPop - the new population selected from the oldPop
% oldPop -
www.eeworm.com/read/118983/14845799
s init.s
;
; This module performs ROM/RAM remapping (if required), initializes stack
; pointers and interrupts for each mode, and finally branches to __main in
; the C library (which eventually calls main
www.eeworm.com/read/220155/14847853
m recmut.m
% RECLIN.M (line RECombination with MUTation features)
%
% This function performs line recombination with mutation features between
% pairs of individuals and returns the new individuals after m
www.eeworm.com/read/220155/14847899
m recint.m
% RECINT.M (RECombination extended INTermediate)
%
% This function performs extended intermediate recombination between
% pairs of individuals and returns the new individuals after mating.
%
% S
www.eeworm.com/read/220155/14847902
m select.m
% SELECT.M (universal SELECTion)
%
% This function performs universal selection. The function handles
% multiple populations and calls the low level selection function
% for the actual select
www.eeworm.com/read/220155/14847907
m sus.m
% SUS.M (Stochastic Universal Sampling)
%
% This function performs selection with STOCHASTIC UNIVERSAL SAMPLING.
%
% Syntax: NewChrIx = sus(FitnV, Nsel)
%
% Input parameters:
% FitnV
www.eeworm.com/read/220155/14847935
m xovshrs.m
% XOVSHRS.M (CROSSOVer SHuffle with Reduced Surrogate)
%
% This function performs shuffle 'reduced surrogate' crossover between
% pairs of individuals and returns the current generation after ma
www.eeworm.com/read/218609/14913180
m tournselect.m
function[newPop] = tournSelect(oldPop,options)
% Performs a tournament selection.
%
% function[newPop] = tournSelect(oldPop,options)
% newPop - the new population selected from the oldPop
% oldPop -
www.eeworm.com/read/218474/14919057
m multinomialr.m
function outIndex = multinomialR(inIndex,q);
% PURPOSE : Performs the resampling stage of the SIR
% in order(number of samples) steps.
% INPUTS : - inIndex = Input particle indices.
%