标签:style blog http ar color os 使用 sp for
其实,使用它的直接原因是因为matlab太大了,不方便。另外,就是它是免费的。
在安装这个库的时候,会需要安装一些它所依赖的库,比如six等。从sourceforge上下载,只需按照提示安装完成就行了。
下边是第一个matplot的绘图实例,其中,数学方便的东西主要用到了numpy的东西。 很简单! 跟matlab太像了~~
1 import numpy as np 2 import matplotlib.pyplot as plt 3 4 x = np.linspace(0, 10, 1000) #1000 points 5 y = np.sin(x) 6 z = np.cos(x**2) 7 8 plt.figure(figsize=(8,4)) 9 plt.plot(x,y,label="$sin(x)$",color="red",linewidth=2) 10 plt.plot(x,z,"g--",label="$cos(x^2)$",linewidth=1.5) 11 plt.xlabel("Time(s)") 12 plt.ylabel("Value") 13 plt.title("My first example") 14 plt.ylim(-1.5,1.5) 15 plt.legend() 16 plt.show()
运行结果如下:
标签:style blog http ar color os 使用 sp for
原文地址:http://www.cnblogs.com/AmitX-moten/p/4170830.html