Python&NumPy
breeze5428
这个作者很懒,什么都没留下…
展开
-
Python笔记——从shell中退出python命令
从shell中退出python命令:是原创 2014-05-26 14:55:57 · 37535 阅读 · 2 评论 -
python保存和加载numpy数组
参考:http://old.sebug.net/paper/books/scipydoc/numpy_intro.htmla = np.arange(0,12,0.5).reshape(4,-1)np.savetxt("a.txt", a) # 缺省按照'%.18e'格式保存数据,以空格分隔np.loadtxt("a.txt")array([[ 0. , 0.5, 1. ,转载 2017-04-19 22:37:38 · 10757 阅读 · 0 评论 -
crop and resize image
目标参考:https://docs.opencv.org/3.0-beta/doc/py_tutorials/py_gui/py_image_display/py_image_display.html原创 2018-05-11 16:19:20 · 6228 阅读 · 0 评论 -
Python虚拟环境工具Virtualenv的安装与使用
简介:Virtualenv可以为Python提供独立的运行环境,在一定程度上可解决解决依赖、版本以及间接权限等问题。安装:使用pip命令安装:$ [sudo] pip install virtualenv或使用$ [sudo] pip install https://github.com/pypa/virtualenv/tarball/master安装最新版本。使用创建虚拟环境$ virtuale...原创 2018-05-06 23:12:57 · 7057 阅读 · 0 评论 -
Python 3执行python2代码时遇到的部分问题
1.TypeError: 'range' object does not support item assignment报错语句:np.random.shuffle(keys)此处的keys是由range() 函数产生(在此没有贴出全部的代码)。在Python2中,range返回的是列表。而Python3 range() 函数返回的是一个可迭代对象(类型是对象),而不是列表类型。代码需要修改为:...原创 2018-05-06 17:57:59 · 1303 阅读 · 0 评论 -
Ubuntu下安装Jupyter notebook
安装使用pip命令安装$ pip3 install jupyter此时在终端直接输入jupyter notebook,则会提示“jupyter: command not found”。需要在终端输入$ ~/.local/bin/jupyter-notebook修改环境变量在~/.bashrc文件中将jupyter notebook的路径添加到环境变量PATH中,export PATH=~/.loc...原创 2018-05-07 17:10:04 · 5322 阅读 · 0 评论 -
Numpy一维array转置
参考:https://www.cnblogs.com/cymwill/p/8358866.html分析Numpy相关的转置函数有T、transpose等。使一维数组转置可以使用reshape实现。实现例子import numpy as np a = np.array([1,2,3,4,5])print(a)print(a.T)print(a.transpose())prin...原创 2018-06-23 18:19:30 · 39224 阅读 · 0 评论 -
Python笔记——读写mat数据
使用模块sicpy.io的函数loadmat和savemat可以实现Python对mat数据的读写。原创 2014-12-04 22:17:31 · 73825 阅读 · 2 评论 -
Python笔记——module加载失败
最近在调程序,用到C和Python的混编。原创 2014-05-26 20:55:48 · 1775 阅读 · 0 评论 -
Python笔记——string.split()
参考网址:http://www.tutorialspoint.com/python/string_split.htm函数描述:原创 2014-05-27 19:57:26 · 3239 阅读 · 0 评论 -
Python笔记——string.strip()
参考网址:http://www.tutorialspoint.com/python/pdf/string_strip.pdf函数描述:去掉字吃翻译 2014-05-27 20:21:39 · 3499 阅读 · 1 评论 -
Python 笔记—— string.count()
参考网页:http://www.tutorialspoint.com/python/pdf/string_count.pdf原创 2014-05-27 18:48:42 · 3186 阅读 · 0 评论 -
Python编程笔记——string.format()
参考:https://docs.python.org/3/library/string.html原创 2014-06-16 14:57:04 · 3791 阅读 · 0 评论 -
利用Python可视化MINIST数据集
impimport matplotlib.pyplot as plt原创 2014-11-02 11:28:09 · 4822 阅读 · 0 评论 -
Python笔记——列表(list)
参考网址:https://docs.python.org/3/tutorial/introduction.html#lists原创 2014-11-26 10:19:52 · 751 阅读 · 0 评论 -
Python笔记——input( )和raw_input( )
写了一小段Python代码,想要实现键盘终止程序。代码如下:while True: profit = input("input:") if profit == "quit": breakprint('Done')发现并不如愿。将第二行中的函数input修改为raw_input后,则可实现循环终止。raw_input( ): raw_input将输入作为原创 2014-12-06 16:30:58 · 897 阅读 · 0 评论 -
Python笔记——Ubuntu下Pydev+Eclipse
因为不想在终端上敲Python代码,所以决定配置下Pydev+Eclipse。配置时主要参考Python的官网:http://pydev.org/manual_101_install.html在配置时,需要认真的阅读Important requisite。在多次安装后,发现我当前系统的配置有两点不符合需求:(1)我的系统版本为1.6.0_30,低于需求(2)Python的版本为2.原创 2014-12-05 17:21:05 · 1133 阅读 · 0 评论 -
Python遍历dictionary的keys
参考:http://www.runoob.com/python/att-dictionary-items.html语法dict.items()实现dic = {'a':1, 'b':2}for key ,value in dic.items(): print(key,',', value)输出结果:b , 2a , 1原创 2018-06-27 21:40:16 · 6337 阅读 · 0 评论