《MATLAB智能算法30个案例》分析源代码 - matlab算法设计 - 谷速源码
下载频道> 资源分类> matlab源码> 算法设计> 《MATLAB智能算法30个案例》分析源代码

标题:《MATLAB智能算法30个案例》分析源代码
分享到:

所属分类: 算法设计 资源类型:程序源码 文件大小: 1.55 MB 上传时间: 2019-06-15 23:33:54 下载次数: 46 资源积分:1分 提 供 者: zhangsan456 20190615113333268
内容:
clc
clear all
close all
%% 画出函数图
figure(1);
hold on;
lb=1;ub=2; %函数自变量范围【1,2】
ezplot('sin(10*pi*X)/X',[lb,ub]);   %画出函数曲线
xlabel('自变量/X')
ylabel('函数值/Y')
%% 定义遗传算法参数
NIND=40;        %个体数目
MAXGEN=20;      %最大遗传代数
PRECI=20;       %变量的二进制位数
GGAP=0.95;      %代沟
px=0.7;         %交叉概率
pm=0.01;        %变异概率
trace=zeros(2,MAXGEN);                        %寻优结果的初始值
FieldD=[PRECI;lb;ub;1;0;1;1];                      %区域描述器
Chrom=crtbp(NIND,PRECI);                      %初始种群
%% 优化
gen=0;                                  %代计数器
X=bs2rv(Chrom,FieldD);                 %计算初始种群的十进制转换
ObjV=sin(10*pi*X)./X;        %计算目标函数值
while gen<MAXGEN
   FitnV=ranking(ObjV);                               %分配适应度值
   SelCh=select('sus',Chrom,FitnV,GGAP);              %选择
   SelCh=recombin('xovsp',SelCh,px);                  %重组
   SelCh=mut(SelCh,pm);                               %变异
   X=bs2rv(SelCh,FieldD);               %子代个体的十进制转换
   ObjVSel=sin(10*pi*X)./X;             %计算子代的目标函数值
   [Chrom,ObjV]=reins(Chrom,SelCh,1,1,ObjV,ObjVSel); %重插入子代到父代,得到新种群
   X=bs2rv(Chrom,FieldD);
   gen=gen+1;                                             %代计数器增加
   %获取每代的最优解及其序号,Y为最优解,I为个体的序号
   [Y,I]=min(ObjV);
   trace(1,gen)=X(I);                            %记下每代的最优值
   trace(2,gen)=Y;                               %记下每代的最优值
end
plot(trace(1,:),trace(2,:),'bo');                            %画出每代的最优点
grid on;
plot(X,ObjV,'b*');   %画出最后一代的种群
hold off
%% 画进化图
figure(2);
plot(1:MAXGEN,trace(2,:));
grid on
xlabel('遗传代数')
ylabel('解的变化')
('进化过程')
bestY=trace(2,end);
bestX=trace(1,end);
fprintf(['最优解:\nX=',num2str(bestX),'\nY=',num2str(bestY),'\n'])

文件列表(点击上边下载按钮,如果是垃圾文件请在下面评价差评或者投诉):

《MATLAB智能算法30个案例》分析源代码/
《MATLAB智能算法30个案例》分析源代码/code/
《MATLAB智能算法30个案例》分析源代码/code/chapter1/
《MATLAB智能算法30个案例》分析源代码/code/chapter10/
《MATLAB智能算法30个案例》分析源代码/code/chapter11/
《MATLAB智能算法30个案例》分析源代码/code/chapter12/
《MATLAB智能算法30个案例》分析源代码/code/chapter13/
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/
《MATLAB智能算法30个案例》分析源代码/code/chapter14/
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/源程序/
《MATLAB智能算法30个案例》分析源代码/code/chapter15/
《MATLAB智能算法30个案例》分析源代码/code/chapter16/
《MATLAB智能算法30个案例》分析源代码/code/chapter17/
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/
《MATLAB智能算法30个案例》分析源代码/code/chapter18/
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/
《MATLAB智能算法30个案例》分析源代码/code/chapter19/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/
《MATLAB智能算法30个案例》分析源代码/code/chapter20/
《MATLAB智能算法30个案例》分析源代码/code/chapter21/
《MATLAB智能算法30个案例》分析源代码/code/chapter21/源程序/
《MATLAB智能算法30个案例》分析源代码/code/chapter22/
《MATLAB智能算法30个案例》分析源代码/code/chapter23/
《MATLAB智能算法30个案例》分析源代码/code/chapter23/DijstraPlan.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/
《MATLAB智能算法30个案例》分析源代码/code/chapter25/
《MATLAB智能算法30个案例》分析源代码/code/chapter26/
《MATLAB智能算法30个案例》分析源代码/code/chapter27/
《MATLAB智能算法30个案例》分析源代码/code/chapter28/
《MATLAB智能算法30个案例》分析源代码/code/chapter29/
《MATLAB智能算法30个案例》分析源代码/code/chapter3/
《MATLAB智能算法30个案例》分析源代码/code/chapter30/
《MATLAB智能算法30个案例》分析源代码/code/chapter4/
《MATLAB智能算法30个案例》分析源代码/code/chapter5/
《MATLAB智能算法30个案例》分析源代码/code/chapter5/源程序/
《MATLAB智能算法30个案例》分析源代码/code/chapter6/
《MATLAB智能算法30个案例》分析源代码/code/chapter6/源程序/
《MATLAB智能算法30个案例》分析源代码/code/chapter7/
《MATLAB智能算法30个案例》分析源代码/code/chapter8/
《MATLAB智能算法30个案例》分析源代码/code/chapter9/
《MATLAB智能算法30个案例》分析源代码/code/chapter9/源程序/
《MATLAB智能算法30个案例》分析源代码/code/chapter1/example1.m
《MATLAB智能算法30个案例》分析源代码/code/chapter1/example2.m
《MATLAB智能算法30个案例》分析源代码/code/chapter10/data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter10/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/Find.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/REINS.M
《MATLAB智能算法30个案例》分析源代码/code/chapter11/RWS.M
《MATLAB智能算法30个案例》分析源代码/code/chapter11/SELECT.M
《MATLAB智能算法30个案例》分析源代码/code/chapter11/aberranceJm.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/across.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/cal.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/calP.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/caltime.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/plotRec.m
《MATLAB智能算法30个案例》分析源代码/code/chapter11/ranking.M
《MATLAB智能算法30个案例》分析源代码/code/chapter11/scheduleData.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter11/selectJm.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/IAdata.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter12/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/bestselect.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/centre.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter12/concentration.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/draw.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/excellence.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/figure.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter12/fitness.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/incorporate.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/popinit.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/similar.m
《MATLAB智能算法30个案例》分析源代码/code/chapter12/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/MexicoHatnew.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/PSO0.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/PSO1.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/PSO2.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/PSO3.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/PSO4.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample1/wchange.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/PSO.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/pso.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/pso.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/rastrigrin.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample2-Rastrgrin/rastrigrin.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/Griewank.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/Griewank.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/PSO.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/pso.fig
《MATLAB智能算法30个案例》分析源代码/code/chapter13/sample3-Griewankan/pso.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/GA_run.html
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/GA_run.png
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/GA_run_01.png
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/PSO.html
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/PSO.png
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/PSO_01.png
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/cell模式下运行结果/PSO_02.png
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/源程序/GA_run.m
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/源程序/PID_Model.mdl
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/源程序/PSO.m
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/源程序/PSO_PID.m
《MATLAB智能算法30个案例》分析源代码/code/chapter14/案例14/问题解决思路.pdf
《MATLAB智能算法30个案例》分析源代码/code/chapter15/Oliver30.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/bayg29.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/burma14.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/ch130.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/ch150.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/dist.m
《MATLAB智能算法30个案例》分析源代码/code/chapter15/eil51.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/fitness.m
《MATLAB智能算法30个案例》分析源代码/code/chapter15/gr96.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/main.asv
《MATLAB智能算法30个案例》分析源代码/code/chapter15/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter15/pr226.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/pr76.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter15/st70.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter16/DF1function.m
《MATLAB智能算法30个案例》分析源代码/code/chapter16/fitnessRecord.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter16/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter16/result.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/forcecol.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/forcerow.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/goplotpso.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/linear_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/normmat.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/pso_Trelea_vectorized.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/PSOt/spiral_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/DeJong_f2.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/DeJong_f3.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/DeJong_f4.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/Foxhole.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/Griewank.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/NDparabola.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/Rastrigin.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/Rosenbrock.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/ackley.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/alpine.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/f6.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/f6_bubbles_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/f6_linear_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/f6_spiral_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/f6mod.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/forcecol.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/forcerow.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/goplotpso.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/linear_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/normmat.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/pso_Trelea_vectorized.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/spiral_dyn.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/test_func.m
《MATLAB智能算法30个案例》分析源代码/code/chapter17/testfunctions/tripod.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1.rar
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_dist.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_follow.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_foodconsistence.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_init.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_prey.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/AF_swarm.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/dist.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example1/example1.m
《MATLAB智能算法30个案例》分析源代码/code/chapter18/example2.rar
《MATLAB智能算法30个案例》分析源代码/code/chapter19/CityPosition1.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter19/CityPosition2.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter19/CityPosition3.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter19/Distanse.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/DrawPath.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/Metropolis.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/NewAnswer.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/OutputPath.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/PathLength.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/SA_TSP.m
《MATLAB智能算法30个案例》分析源代码/code/chapter19/dsxy2figxy.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Genetic.asv
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Genetic.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/nonlinear.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例1非线性/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/Genetic.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Genetic.asv
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Genetic.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/nonlinear.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例2非线性/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/Genetic.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/Code.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/Cross.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/Genetic.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/Mutation.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/fun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/nonlinear.m
《MATLAB智能算法30个案例》分析源代码/code/chapter2/案例3非线性/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/FCMfun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/FCMpure.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/GAFCM.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/ObjFun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/SAGAFcmMain.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/X.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter20/initFCM.m
《MATLAB智能算法30个案例》分析源代码/code/chapter20/iterateFCM.m
《MATLAB智能算法30个案例》分析源代码/code/chapter21/源程序/my_first_SA.m
《MATLAB智能算法30个案例》分析源代码/code/chapter21/源程序/my_first_SA_run.m
《MATLAB智能算法30个案例》分析源代码/code/chapter22/citys_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter22/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter23/DijkstraPlan.m
《MATLAB智能算法30个案例》分析源代码/code/chapter23/barrier.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter23/lines.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter23/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter23/matrix.txt
《MATLAB智能算法30个案例》分析源代码/code/chapter24/CacuFit.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/CacuQfz.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/HeightData.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter24/czfz.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/data.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/data1.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter24/searchpath.m
《MATLAB智能算法30个案例》分析源代码/code/chapter25/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter25/spectra_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter26/iris_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter26/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter27/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter27/water_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter28/BreastTissue_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter28/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter29/concrete_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter29/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter3/BPfun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter3/GABPMain.m
《MATLAB智能算法30个案例》分析源代码/code/chapter3/Objfun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter3/callbackfun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter3/data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter30/elmpredict.m
《MATLAB智能算法30个案例》分析源代码/code/chapter30/elmtrain.m
《MATLAB智能算法30个案例》分析源代码/code/chapter30/iris_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter30/main.m
《MATLAB智能算法30个案例》分析源代码/code/chapter30/spectra_data.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter4/CityPosition1.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter4/CityPosition2.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter4/CityPosition3.mat
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Distanse.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/DrawPath.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Fitness.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/GA_TSP.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/InitPop.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Mutate.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/OutputPath.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/PathLength.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Recombin.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Reins.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Reverse.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Select.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/Sus.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/dsxy2figxy.m
《MATLAB智能算法30个案例》分析源代码/code/chapter4/test.m
《MATLAB智能算法30个案例》分析源代码/code/chapter5/源程序/Active_Suspension_LQR.mdl
《MATLAB智能算法30个案例》分析源代码/code/chapter5/源程序/GA_LQR.m
《MATLAB智能算法30个案例》分析源代码/code/chapter5/源程序/GA_LQR_run.m
《MATLAB智能算法30个案例》分析源代码/code/chapter6/源程序/GA_demo.m
《MATLAB智能算法30个案例》分析源代码/code/chapter6/源程序/GA_demo_run.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/EliteInduvidual.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/MPGA.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/ObjectFunction.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/SGA.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/danyuan.m
《MATLAB智能算法30个案例》分析源代码/code/chapter7/immigrant.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/FitnessFunction.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/InitPop.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/Objfunction.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/Qgate.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/QuantumMain.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/bin2decFun.m
《MATLAB智能算法30个案例》分析源代码/code/chapter8/collapse.m
《MATLAB智能算法30个案例》分析源代码/code/chapter9/源程序/my_first_multi.m
《MATLAB智能算法30个案例》分析源代码/code/chapter9/源程序/my_first_multi_run.m

关键词: 智能算法 30个案例

相关推荐

Top_arrow
回到顶部
联系方式| 版权声明| 招聘信息| 广告服务| 银行汇款| 法律顾问| 兼职技术| 付款方式| 关于我们|
网站客服网站客服 程序员兼职招聘 程序员兼职招聘
沪ICP备19040327号-3
公安备案号:沪公网安备 31011802003874号
库纳格流体控制系统(上海)有限公司 版权所有
Copyright © 1999-2014, GUSUCODE.COM, All Rights Reserved