代码搜索:selection
找到约 9,869 项符合「selection」的源代码
代码结果 9,869
www.eeworm.com/read/131588/14136402
m feature_selection.m
function fig = feature_selection()
% This is the machine-generated representation of a Handle Graphics object
% and its children. Note that handle values may change when these objects
% are re-cre
www.eeworm.com/read/129915/14217629
txt feature_selection.txt
Genetic_Culling@%groups, Out_dim, classifier, classifier params@[0.1,2,'LS',[]]@S
HDR@Out dimension@2@S
ICA@Out dimension, Convergence rate:@[2, 1e-30]@S
Koller@Out dimension@2@S
MDS@Method, Out
www.eeworm.com/read/129915/14217743
mat feature_selection.mat
www.eeworm.com/read/129915/14217780
m feature_selection.m
function fig = feature_selection()
% This is the machine-generated representation of a Handle Graphics object
% and its children. Note that handle values may change when these objects
% are re-cre
www.eeworm.com/read/227962/14405163
m tournament_selection.m
function f = selection_individuals(chromosome,pool_size,tour_size)
% function selection_individuals(chromosome,pool_size,tour_size) is the
% selection policy for selecting the individuals for the
www.eeworm.com/read/126474/14422060
c selection sort.c
/* A program to perform selection sort on a 10 element array */
int x[10];
int minloc( int a[], int low, int high )
{
int i, x, k;
k = low;
x = a[low];
i = low + 1;
while( i < high
www.eeworm.com/read/124119/14593303
m candidate_selection.m
%%%% Find a candidate model that maximizes log-likelihood %%%%%
%%%% and compute the weight a' %%%%%
%%%% (exclude from the search motif neighborhoods) %%%%%
www.eeworm.com/read/123025/14651267
shtml no_auto_selection.shtml
CTreeCtrl - Stop auto-selection of item
www.eeworm.com/read/215302/15065724
m tournament_selection.m
function f = tournament_selection(pop,pool_size,tour_size)
[popsize variables] = size(pop);
rank = variables - 1;
crowding_distance = variables;
for i = 1 : pool_size
for