摘要: https://www.virtualbox.org/wiki/Downloads https://www.vagrantup.com/downloads.html http://the.earth.li/~sgtatham/putty/0.67/x86/putty.exe sudo apt-get 阅读全文
posted @ 2016-03-21 19:44 张舒 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 人类的思维活动主要有三种: 1. 复合 2. 对比 3. 抽象 我认为这也是最重要的编程思想。 我们将要研究的计算过程(computational process)。Computational process 是通过电脑实现的一种抽象过程,在其进化中,它还会处理其它抽象实物--数据(data)。这一过程是通过程序实现的。 Computational Process看不到、摸不着,并不是... 阅读全文
posted @ 2015-01-16 00:57 张舒 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 作图首先要进行数据的输入,matplotlib包只提供作图相关功能,本身并没有数据读入、输出函数,针对各种试验或统计文本数据输入可以使用numpy提供的数据输入函数。# -*- coding: gbk -*-"""Created on Sun Jan 11 11:17:42 2015@author:... 阅读全文
posted @ 2015-01-11 12:34 张舒 阅读(12466) 评论(0) 推荐(1) 编辑
摘要: import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2*np.pi, 100) sinX = np.sin(x) cosX = np.cos(x) plt.plot(x, sinX) plt.plot(x, cosX) plt.show() 阅读全文
posted @ 2015-01-10 23:18 张舒 阅读(368) 评论(0) 推荐(0) 编辑