登录
首页 » matlab » genetic

genetic

于 2013-10-19 发布 文件大小:230KB
0 172
下载积分: 1 下载次数: 4

代码说明:

  这是matlab的遗传算法工具箱,在matlab的环境下使用,用于求解多目标优化问题(This is a matlab genetic algorithm toolbox in matlab environment used for solving multi-objective optimization problem)

文件列表:

genetic
.......\genetic
.......\.......\bs2rv.M,3356,2003-01-26
.......\.......\contents.M,1833,2003-01-24
.......\.......\crtbase.M,1238,2003-01-26
.......\.......\crtbp.M,2270,2003-01-26
.......\.......\crtrp.M,2156,2003-01-26
.......\.......\DOC
.......\.......\...\GATBXA0.PS,53484,1998-04-22
.......\.......\...\GATBXA1.PS,204230,1998-04-22
.......\.......\...\GATBXA2.PS,200234,1998-04-22
.......\.......\gpl.txt,18349,2003-07-18
.......\.......\migrate.M,7272,2003-01-26
.......\.......\mpga.M,4074,2003-01-26
.......\.......\mut.M,1663,2003-01-26
.......\.......\mutate.M,3503,2003-01-26
.......\.......\mutbga.M,5008,2003-01-26
.......\.......\objfun1.M,2717,2003-01-21
.......\.......\objharv.M,2643,2003-01-21
.......\.......\ranking.M,4822,2003-01-26
.......\.......\recdis.M,1890,2003-01-26
.......\.......\recint.M,1958,2003-01-26
.......\.......\reclin.M,2018,2003-01-26
.......\.......\recmut.M,4996,2003-01-26
.......\.......\recombin.M,2569,2003-01-26
.......\.......\reins.M,5638,2003-01-26
.......\.......\rep.M,1272,2003-01-26
.......\.......\resplot.M,2145,2003-01-22
.......\.......\rws.M,1166,2003-01-26
.......\.......\scaling.M,1255,2003-01-26
.......\.......\select.M,2466,2003-01-26
.......\.......\sga.M,2161,2003-01-24
.......\.......\sus.M,1384,2003-01-22
.......\.......\Test_fns
.......\.......\........\demoga1.M,5111,2003-01-26
.......\.......\........\mpga.M,4783,2003-01-26
.......\.......\........\objbran.M,2611,2003-01-29
.......\.......\........\objdopi.M,4206,2003-01-26
.......\.......\........\objeaso.M,2507,2003-01-29
.......\.......\........\objfun1.M,2714,2003-01-21
.......\.......\........\objfun1a.M,2582,2003-01-21
.......\.......\........\objfun1b.M,2441,2003-01-21
.......\.......\........\objfun2.M,2593,2003-01-21
.......\.......\........\objfun6.M,2819,2003-01-21
.......\.......\........\objfun7.M,2523,2003-01-21
.......\.......\........\objfun8.M,2747,2003-01-21
.......\.......\........\objfun9.M,2470,2003-01-21
.......\.......\........\objgold.M,2700,2003-01-21
.......\.......\........\objharv.M,2643,2003-01-21
.......\.......\........\objlinq.M,3381,2003-01-21
.......\.......\........\objlinq2.M,4100,2003-01-26
.......\.......\........\objpush.M,2678,2003-01-21
.......\.......\........\objsixh.M,2610,2003-01-29
.......\.......\........\resplot.M,2132,2003-01-26
.......\.......\........\sga.M,1969,2003-01-26
.......\.......\........\simdopi1.M,2690,1998-04-22
.......\.......\........\simdopi2.M,873,1998-04-22
.......\.......\........\simlinq1.M,2442,2003-01-21
.......\.......\........\simlinq2.M,850,2003-01-26
.......\.......\........\simobjp.M,531,2003-01-26
.......\.......\........\TEST_FNS.PS,140988,1998-04-22
.......\.......\xovdp.M,1106,2003-01-22
.......\.......\xovdprs.M,1155,2003-01-22
.......\.......\xovmp.M,2873,2003-01-22
.......\.......\xovsh.M,1097,2003-01-22
.......\.......\xovshrs.M,1145,2003-01-22
.......\.......\xovsp.M,1110,2003-01-22
.......\.......\xovsprs.M,1155,2003-01-22

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • work
    主要的MATLAB程序可供初级中级者学习(The main MATLAB program is available to study the primary intermediate)
    2009-12-05 10:21:04下载
    积分:1
  • matlab.
    一篇蛮好的文章,关于MATLAB的仿真和实例说明,包括一些simulink里面的模块说明(A fine article on the MATLAB simulation and examples, including some inside the module that simulink)
    2009-07-11 10:46:58下载
    积分:1
  • cu1
    Shielding effectiveness of various materials
    2014-10-04 00:07:01下载
    积分:1
  • matlab动力学分析序详解
    matlab动力学分析程序详解:一个用matlab进行动力学分析的程序例子(Detailed explanation of MATLAB dynamic analysis program)
    2020-10-23 09:57:22下载
    积分:1
  • youhua1
    遗传算法的电机优化程序,个人专门编写的,对于初学者来说,可以借鉴(function youhua1() 遗传算法 n-- 种群规模 ger-- 迭代次数 pc--- 交叉概率 pm-- 变异概率 v-- 初始种群(规模为n) f-- 目标函数值 fit-- 适应度向量 vx-- 最优适应度值向量 vmfit-- 平均适应度值向量 clear all close all clc 清屏 tic 计时器开始计时 n=20 ger=100 pc=0.9 pm=0.1 初始化参数 生成初始种群 v=init_population(n,44) 得到初始种群,22串长,生成20*22的0-1矩阵 [N,L]=size(v) 得到初始规模行,列 disp(sprintf( Number of generations: d ,ger)) disp(sprintf( Population size: d ,N)) disp(sprintf( Crossover probability: .3f ,pc)) disp(sprintf( Mutation probability: .3f ,pm)) sprintf可以控制输出格式 待优化问题)
    2020-12-11 20:19:19下载
    积分:1
  • simul_FSK_BPSK_DPSK
    组合的FSK_BPSK_DPSK几种方式的集合的仿真训练内容,仅供参考,如果有价值那我会更高兴。(FSK_BPSK_DPSK combination of the methods set of simulation training content, for reference purposes only, If the value then I would be more pleased.)
    2007-06-14 22:48:58下载
    积分:1
  • power_VariableInductor
    power_VariableInductor.rar,功率电子领域matlab仿真文件,已经验证过,程序运行正常(power_VariableInductor.rar,Power electronics field matlab simulation file, has already been verified, the normal operating procedures)
    2013-08-26 22:20:58下载
    积分:1
  • z
    说明:  lattice code for communication stbc
    2011-12-11 14:55:26下载
    积分:1
  • Weight_W1
    Cubic Spline weight function
    2013-08-18 13:44:45下载
    积分:1
  • xiebo_phase
    基于快速傅立叶变换的电机中的谐波分析 和提取(Motor based on fast Fourier transform analysis and extraction of the harmonic)
    2010-06-22 17:05:59下载
    积分:1
  • 696518资源总数
  • 104432会员总数
  • 16今日下载