码迷,mamicode.com
首页 >  
搜索关键字:np    ( 2362个结果
进化策略-python实现
ESIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class ESIndividual: 6 7 ''' 8 individual of evolutionary strategy 9 '''...
分类:编程语言   时间:2015-10-09 22:57:43    阅读次数:987
wget mirror
wget -r -np -c xxx-url-xxx-r: recursive-np: no-parent-c: continue-D: domains to follow, comma separated-l: levelhttp://www.labnol.org/software/wget-co...
分类:其他好文   时间:2015-10-08 14:26:59    阅读次数:133
克隆选择算法-python实现
CSAIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class CSAIndividual: 6 7 ''' 8 individual of clone selection algorithm 9 ...
分类:编程语言   时间:2015-10-06 23:42:51    阅读次数:429
差分进化算法-python实现
DEIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class DEIndividual: 6 7 ''' 8 individual of differential evolution algorith...
分类:编程语言   时间:2015-10-06 23:41:30    阅读次数:1372
人工鱼群算法-python实现
AFSIndividual.py 1 import numpy as np 2 import ObjFunction 3 import copy 4 5 6 class AFSIndividual: 7 8 """class for AFSIndividual""" 9 10 ...
分类:编程语言   时间:2015-10-06 23:36:15    阅读次数:1253
和声搜索算法-python实现
HSIndividual.py 1 import numpy as np 2 import ObjFunction 3 4 5 class HSIndividual: 6 7 ''' 8 individual of harmony search algorithm 9 ...
分类:编程语言   时间:2015-10-06 23:36:03    阅读次数:587
粒子群优化算法-python实现
PSOIndividual.py 1 import numpy as np 2 import ObjFunction 3 import copy 4 5 6 class PSOIndividual: 7 8 ''' 9 individual of PSO10 '''11...
分类:编程语言   时间:2015-10-06 23:31:28    阅读次数:993
Numpy 学习之路(1)——数组的创建
数组是Numpy操作的主要对象,也是python数据分析的主要对象,本系列文章是本人在学习Numpy中的笔记。文章中以下都基于以下方式的numpy导入:import numpy as npfrom numpy import *1、普通数组的创建——np.arange(), np.array(),(1...
分类:编程语言   时间:2015-10-04 20:51:06    阅读次数:267
NP难问题求解综述
NP难问题求解综述摘要:定义NP问题及P类问题,并介绍一些常见的NP问题,以及NP问题的一些求解方法,最后最NP问题求解的发展方向做一些展望。关键词:NP难问题 P类问题 算法 最优化问题正文:一.NP难问题及P类问题为了解释NP难问题及P类问题,先介绍确定性算法和非确定性算法这两个概念,设A是求解...
分类:其他好文   时间:2015-10-03 20:40:01    阅读次数:490
centOS中wget的使用方法
对于 Linux 用户来说,几乎每天都在使用它。下面为大家介绍几个有用的 CentOS wget 小技巧,可以让你更加高效而灵活的使用CentOS wget。CentOS wget 使用技巧$ CentOS wget -r -np -nd http://example.com/packages/ 这...
分类:其他好文   时间:2015-10-01 21:50:28    阅读次数:292
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!