sga_autotest_all.m

来自「一个matlab环境下编制的使用很方便的多目标程序」· M 代码 · 共 56 行

M
56
字号
% /*M-FILE SCRIPT SGA_autotest_all MMM SGALAB */ %
% /*==================================================================================================
%  Simple Genetic Algorithm Laboratory Toolbox for Matlab 7.x
%
%  Copyright 2007 The SxLAB Family - Yi Chen - chenyi2005@gmail.com
% ====================================================================================================
% 
%File description:
%       To run all test cases for SGALAB
% 
%Appendix comments:
%  
%Usage:
%    key-in "SGA_autotest_all" in Matlab command window
% 
%===================================================================================================
%  See Also:        SGA_autotest_MO
%                   SGA_autotest_all
%
%
%===================================================================================================
%
%===================================================================================================
%Revision -
%Date        Name    Description of Change email                 Location
%14-Dec-2006 Chen Yi Initial               chenyi2005@gmail.com  Glasgow 
%HISTORY$
%==================================================================================================*/

% SGA_autotest_all Begin 

clear;
home
close('all');
disp('SGALAB Autotest is now running...')

% Auto-test for Math single objective problem
% SGALAB_demo_MATH.m
SGALAB_demo_MATH

% Auto-test for TSP problems
% SGALAB_demo_TSP_13cities.m
SGALAB_demo_TSP_13cities

%Auto-test for Multi-Objective methods
SGA_autotest_MO


clear;
home
close('all');
disp('SGALAB Autotest is now ending...')
disp('100% Test Pass...')

% SGA_autotest_all End 

⌨️ 快捷键说明

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