?? ga_ex641.m
字號:
% GA_ex641.m file
% Find scaling factors of a Fuzzy control system by using GA
% PenChen Chou, 8-5-2001
%**********************************************************/
% User can modify the following in blocks
%**********************************************************/
global MIN_offset MUL_factor LOCUS x_data y_data
global Emin MDL Se Sde Su FT
MDL='dp22a_nc'; eval(MDL); FT=30;
MIN_offset=9e4; LOCUS=0; x_data=[]; y_data=[];
MUL_factor=5;
Emin=MIN_offset;
obj_fcn = 'GA_f641'; % Objective function
range = [ 0.01 0.0001 100
10 0.05 2000];
IC=[];elite=1;
gen_no=35; popuSize=30;
bit_n=40; xover_rate=1; mutate_rate=0.05;
%************************************************************
% calling GA
tic
% function [popu, popu_real, fcn_value, upper, average,...
% lower, BEST_popu, popuSize, gen_no, para]=GA_genetic(obj_fcn,...
% range, IC, elite, gen_no, popuSize, bit_n, xover_rate,...
% mutate_rate);
[popu, popu_real, fcn_value, upper, average, lower, ...
BEST_popu, popuSize, gen_no, para] = GA_genetic(obj_fcn,...
range, IC, elite, gen_no, popuSize, bit_n, xover_rate,...
mutate_rate);
t=toc/60;
fprintf('==> Computation time is (%.2f) minutes.\n',t);
% Show the result using parameters found by GA
Se=para(1);
Sde=para(2);
Su=para(3);
[t, X, Y]=sim(MDL,[0:0.01:30]);
in=Y(:,2); x1=Y(:,3); u=Y(:,4); y=[in x1];
figure(2);subplot(211);plot(t,y);
title('GA based vehicle speed command and output responses(m/s.)');
xlabel(['Time(s), Se=' num2str(Se) ',Sde=' num2str(Sde) ',Su=' num2str(Su)]);
figure(2);subplot(212);plot(t,[u]);
title('Control effort');
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -