use.m

来自「一个遗传算法工具箱一个遗传算法工具箱一个遗传算法工具箱一个遗传算法工具箱一个遗传」· M 代码 · 共 60 行

M
60
字号
% Genetic Optimization Toolbox
%
% Main interface
% ga.m                   The Genetic Algorithm  
% initializega.m         Initialization function for float and binary
%                        representation Used by ga.m   
% Operators used during simulated evolution
%
% Crossover Operators
% 
% Float and Binary Representation
%   simpleXover.m          Operator for the Algorithm Used by ga.m 
%
% Float Representation
%   heuristicXover.m       Operator for the Algorithm Used by ga.m 
%   arithXover.m           Operator for the Algorithm Used by ga.m 
%
% Mutation Operators
%
% Binary Representation
%   binaryMutation.m       Operator for the Algorithm Used by ga.m 
%
% Float Representation
%   boundaryMutation.m     Operator for the Algorithm Used by ga.m 
%   multiNonUnifMutation.m Operator for the Algorithm Used by ga.m 
%   nonUnifMutation.m      Operator for the Algorithm Used by ga.m 
%   unifMutation.m         Operator for the Algorithm Used by ga.m
%
%
%
% Selection Functions
%   normGeomSelect.m       Selection function Used by ga.m
%   roulette.m             Selection function Used by ga.m
%   tournSelect.m          Selection function Used by ga.m
%
% Termination Functions
%   maxGenTerm.m           Termination function Used by ga.m
%   optMaxGenTerm.m        Termination function Used by ga.m
%

% Demonstrations
%   gademo1.m              Introductory demo of GAOT
%   gademo2.m              Multi-dimensional demo of GAOT
%   gademo3.m              Reference for GAOT
%   floatExample.m         Example using float representation
%   floatGradExample.m     Example exploring learning(Lamarckian and Baldwinian)
%   binaryExample.m        Example using binary representation
%   orderBasedExample.m    Example using order-based representation
%
% Functions used in Demonstrations
%   gademo1eval1.m         Example eval function used by gademo1.m
%   coranaEval.m           Calculate Corana functions used by gademo2.m
%   coranaMin.m            Calculate negative of Corana used by gademo2.m
%   gaEval.m               Calculation of Corana used for testing
%   gaMichEval.m           Michalewicz 2-variable problem evaluation
%   gaZBGradEval.m         Michalewicz Evaluation Used for Learning example      
%   gaZBGrad.m             Gradient used for SQP during learning
%   tspEval.m              Function used in orderBasedExample

⌨️ 快捷键说明

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