搜索资源列表
sga_sga
- 一个基本遗传算法求函数最大值的程序,在Vc中运行结果很好,有详细的代码注释,可以做为模板使用。 sag_sag.c-a basic function of genetic algorithms for maximum procedures, the Vc running good results, a detailed source notes, can be used as a template. Sag_sag.c
fmax_ga
- 求解函数最大值的遗传算法Matlab源代码-maximum function for the genetic algorithm source code Matlab
theMax_lyon
- 利用遗传算法求函数最大值的一段源代码,算法的使用过程可以一起研究一下-the use of genetic algorithms to find the maximum function of a source code, the algorithm can be used in the process of study
用遗传算法求解二维函数的最大值
- 用遗传算法求解二维函数的最大值问题,用matlab实现,但是不采用matlab遗传算法工具箱
利用遗传算法求解区间[0, 31]上的二次函数 y=x2的最大值
- 利用遗传算法求解区间[0, 31]上的二次函数 y=x2的最大值
简单遗传算法例子
- 只需修改obj.m的目标函数运行gmax.m就可求最大值
利用遗传算法求某函数的最大值
- 利用遗传算法求某函数的最大值matlab- Asks some function using the heredity algorithm maximum value matlab
yichuansuanfa
- 遗传算法求解函数y=x^2 在区间0-30的最大值-Genetic Algorithm for function y = x ^ 2 in the range of 0-30 maximum
SGA_v1.0
- 用开发语言vc++编程实现用遗传算法求解函数f=x*sin(10*x)+1.0的最大值。-With the development of language vc++ Programming using genetic algorithm function f = x* sin (10* x)+ 1.0 maximum.
MyGA
- 一个简单的改进的遗传算法,用来求五维函数最大值,算法简单,对初学者有很好的帮助-Improvement of a simple genetic algorithm to seek the maximum five-dimensional function, the algorithm is simple, for beginners there is a very good help
AdapGA
- 基本遗传算法,可以通过简单的调用即可实现最大值和最小值等函数-Basic genetic algorithm, a simple call through to the achievement of maximum and minimum values, such as function
myGA
- 自适应遗传算法,可以通过简单的调用即可实现最大值和最小值等函数-Adaptive genetic algorithm, a simple call through to the achievement of maximum and minimum values, such as function
GA
- 一个遗传算法求解函数的最大值的程序,挺好用的-A genetic algorithm procedure for maximum function, very good use
GA
- 遗传算法求解最优解求函数的最大值 : f(x,y)=21.5+x*sin(4*PI*x)+y*sin(20*PI*y) | 定义域 D: -3 <=x <=12.1 , 4.1 <=y <=5.8 | | 注: 目前最好结果:f(11.6255448,5.7250441)=38.8502944790207 -failed to translate
GA
- 用遗传算法求解函数的最大值,适用于初学遗传算法的人-basic GA
GA
- 遗传算法求解函数最大值 设计的种群规模,采用的选择算子,交叉概率,变异概率,进化代数和最优解-Design of population size, using the selection operator, crossover probability, mutation probability, evolutionary algebra and the optimal solution
ga
- 遗传算法解决函数最大值问题,很实用,没事可以研习一下-Maximization of genetic algorithm to solve the function is very useful, nothing can be studies about
select
- 自编的MATLAB遗传算法代码,用简单遗传算法求取函数最大值-The MATLAB genetic algorithm code self, to strike a function with a maximum value of simple genetic algorithm
遗传算法源代码
- 用遗传算法求函数最大值问题,vc++实现,简单明了(Using the genetic algorithm to solve the problem of maximum function, the vc + + implementation is simple and straightforward)
遗传算法程序
- 遗传算法程序,% 下面举例说明遗传算法 % % 求下列函数的最大值 % % f(x)=10*sin(5x)+7*cos(4x) x∈[0,10] % % 将 x 的值用一个10位的二值形式表示为二值问题,一个10位的二值数提供的分辨率是每为 (10-0)/(2^10-1)≈0.01 。 % % 将变量域 [0,10] 离散化为二值域 [0,1023], x=0+10*b/1023, 其中 b 是 [0,1023] 中的一个二值数。 %(Inheritance Algorithm)