与遗传算法的第一次接触
遗传算法的基本概念
基本定义
遗传算法的基本流程
遗传算法过程中的具体操作
参数的编码
二进制编码
Gray编码
实数编码
有序编码
初始群体的设定
适应度函数的计算
遗传操作设计
选择selection
交叉crossover
变异mutation
控制参数的设定
求解优化问题的实例
问题描述
问题分析
算法设计
个体编码
适应值函数
选择策略
杂交算子
变异算子
参数设置...
分类:
编程语言 时间:
2015-05-10 17:18:19
阅读次数:
285
灰度图imggray有了上面的基础,灰度图就相当简单了彩色图转灰度方法:1.浮点算法:Gray=R*0.3+G*0.59+B*0.112.整数方法:Gray=(R*30+G*59+B*11)/1003.移位方法:Gray =(R*28+G*151+B*77)>>8; ??4.平均值法:G...
分类:
编程语言 时间:
2015-05-09 20:19:53
阅读次数:
238
CSS代码:.gray { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); ...
分类:
Web程序 时间:
2015-05-08 14:40:38
阅读次数:
148
1、grayscale灰度用法: -moz-filter: grayscale(100%) ; -webkit-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); filter: gray...
分类:
Web程序 时间:
2015-05-05 16:20:48
阅读次数:
156
ColorCodes = { 'black' : '0;30', 'blue' : '0;34', 'bright blue' : '1;34', 'bright cyan' : '1;36', 'bright gray' : '0;37', 'bright green' : '1;32', 'br...
分类:
其他好文 时间:
2015-05-03 17:15:01
阅读次数:
108
Gray CodeTotal Accepted:32175Total Submissions:98703My SubmissionsQuestionSolutionThe gray code is a binary numeral system where two successive values...
分类:
其他好文 时间:
2015-05-01 14:45:01
阅读次数:
188
1、画虚线,实线:建立dotted_line_gray.xml文件放在drawable文件夹下面。android:shape="line" 可以修改你想要的形状 然后在布局的xml里面:作为ImageView或者Linearlayout等作为背景源就可以了。--------...
分类:
移动开发 时间:
2015-04-26 22:25:35
阅读次数:
214
题目:The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total num...
分类:
其他好文 时间:
2015-04-26 21:02:58
阅读次数:
143
从测试设计方法分类测试名称测试内容Black box黑盒测试把软件系统当作一个“黑箱”,无法了解或使用系统的内部结构及知识。从软件的行为,而不是内部结构出发来设计测试.White box白盒测试设计者可以看到软件系统的内部结构,并且使用软件的内部知识来指导测试数据及方法的选择。Gray box.灰盒...
分类:
其他好文 时间:
2015-04-26 18:13:35
阅读次数:
166
div + css 边框 虚线dotted:【点线|有点的|点线式边框|点虚线】.introduce { border:1px dotted gray; margin:8px 5px 8px 10px; border-style:das...
分类:
Web程序 时间:
2015-04-26 16:37:27
阅读次数:
138