资源简介
用python实现的遗传算法的一个实例 求函数f x 10 sin 5x + 7 cos 4x 0 < x < 10的最大值
代码片段和文件信息
# To change this license header choose License Headers in Project Properties.
# To change this template file choose Tools | Templates
# and open the template in the editor.
__author__=“lsc“
__date__ =“$2014-4-11 16:41:46$“
if __name__ == “__main__“:
print “Hello World“
def best(pop fitvalue):
px = len(pop)
bestindividual = []
bestfit = fitvalue[0]
for i in range(1px):
if(fitvalue[i] > bestfit):
bestfit = fitvalue[i]
bestindividual = pop[i]
return [bestindividual bestfit]
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
-rw-rw-r-- 583 2014-04-10 16:41 setup.py
-rw-rw-r-- 1075 2014-04-11 21:23 selection.py
-rw-rw-r-- 588 2014-04-11 21:59 mutation.py
-rw-rw-r-- 1457 2014-04-12 16:45 ga.py
-rw-rw-r-- 777 2014-04-11 21:55 crossover.py
-rw-rw-r-- 726 2014-04-10 21:47 calobjvalue.py
-rw-rw-r-- 550 2014-04-11 20:59 calfitvalue.py
-rw-rw-r-- 502 2014-04-12 12:11 best.py
----------- --------- ---------- ----- ----
6258 8
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论