python
a1059682127
这个作者很懒,什么都没留下…
展开
-
安装cvxopt
1、安装anacoda(参考Anaconda完全入门指南)2、创建虚拟环境(管理多个功能包,还能与Pycharm联系)3、进入创建的虚拟环境,conda install cvxopt, 后conda install numpy另:conda install XXX 和pip install XXX区别:conda是跨平台管理器,与语言无关,在conda环境中安装pip是p...原创 2019-03-01 09:02:02 · 528 阅读 · 0 评论 -
del
python中为引用,del删除的是变量,不是数据if __name__=='__main__': a=1 # 对象 1 被 变量a引用,对象1的引用计数器为1 b=a # 对象1 被变量b引用,对象1的引用计数器加1 c=a #1对象1 被变量c引用,对象1的引用计数器加1 del a #删除变量a...转载 2019-03-03 20:37:14 · 204 阅读 · 0 评论 -
Numpy.genfromtxt-读取csv文件数据
list不是真正的数组,处理大量数据时比较慢,numpy内置函数处理数据时较快Numpy.genfromtxtA very common file format for data file is comma-separated values (CSV), or related formats such as TSV (tab-separated values). To read data ...原创 2019-03-01 15:58:05 · 10523 阅读 · 5 评论 -
str.format
映射>>> '{},{}'.format('gzh', 'man')'gzh,man'>>> '{1},{0}'.format('gzh','man')'man,gzh'>>> '{1},{0},{1}'.format('gzh','man')'man,gzh,man'用{}来代替%,区别:%需指定字符串或数字类型%...原创 2019-03-01 15:39:16 · 356 阅读 · 0 评论 -
matplotlib
Matplotlib is a Python 2D plotting library which produces publication quality figures in a variety of hardcopy formats and interactive environments across platforms.matplotlib.pyplot.contourf(*args...原创 2019-03-01 14:41:59 · 112 阅读 · 0 评论 -
itertools.product
相当于迭代器 参考itertools — Functions creating iterators for efficient looping¶itertools.product(*iterables[, repeat])Cartesian product of input iterables.Roughly equivalent to nested for-loops in ...原创 2019-03-01 13:01:25 · 561 阅读 · 0 评论 -
reshape(-1)
>>> array = np.array([[1,2],[3,4]])>>> array.reshape(-1) array([1, 2, 3, 4])>>> array.reshape(-1,1) array([[1], [2], [3], [4]])>>> ar...原创 2019-03-01 11:25:28 · 4498 阅读 · 0 评论 -
[:,0]
[:,0]表示二维数组中第二维下标为0的元素>>> array = np.array([[1,2],[3,4]])>>> array[:,0]array([1, 3])原创 2019-03-01 11:19:03 · 760 阅读 · 0 评论 -
python lamba
lamba python关键字,作用相当于匿名function,形式如下:lambda argument_list : expressioneg:>>> out = lambda x, y: x*y>>> out(1,2)2关于Python中的lambda,这可能是你见过的最完整的讲解...原创 2019-03-01 10:33:06 · 290 阅读 · 0 评论 -
python sum(axis=0)
numpy中sum(axis=0)与sum(axis=1):sum(axis=0)按行相加,对最外层[]内最大的块做块与块的运算,同时去掉最外层[]axis=0:单层[]>>> import numpy as np>>> array = np.array([1, 2, 3])>>> array.sum(axis=0)6...原创 2019-03-01 10:26:46 · 2931 阅读 · 1 评论 -
dist.keys()
>>> dict = {'Name': 'gzh', 'Age': 24}>>> dict.keys()dict_keys(['Name', 'Age']) #不是返回list,返回的是迭代器>>> dict.keys()[0]Traceback (most recent call last): File "<stdi...原创 2019-03-03 20:37:03 · 454 阅读 · 0 评论