free.m

来自「The Source of Genetic Programming develo」· M 代码 · 共 18 行

M
18
字号
function pop=free(pop,state)
%FREE    Applies no restrictions to the size of a GPLAB population.
%   FREE(POPULATION,STATE) returns all the individuals in POPULATION,
%   with no attempt to restrict their number in any way. It does nothing!
%   
%   Input arguments:
%      POPULATION - ordered list of (parents and offspring) individuals (array)
%      STATE - the current state of the algorithm (struct)
%   Output arguments:
%      POPULATION - individuals surviving into the next generation (array)
%
%   See also RESOURCES, STEADY, LOW
%
%   Copyright (C) 2003-2007 Sara Silva (sara@dei.uc.pt)
%   This file is part of the GPLAB Toolbox

% do NOT limit populatin size in any way, so do nothing

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?