flat7th

memo/20120313

created 2012-03-13 modified 2012-03-13 

リンク備考
matplotlibPythonで高品位の2Dプロットを行うライブラリ
IPythonmatplotlibを内包するインタラクティブ計算シェル。Mathematicaみたいなことができる。

格好いい!
Mathematicaみたいっていうか、そっくり。

公式のチュートリアルがわからなかったのでYouTubeで検索したらいいのが出ました。

リンク備考
1_getting started with ipythonYouTube

ipython -pylab

linspace?
linspace(1,100,100)
linspace(0,1,200)
p = linspace(-pi,pi,100)
len(p)
plot(p,cos(p))
clf()
plot(p,sin(p))

自分もシンプルな例を考えてみた
x = [1.1, 1.2, 1.5]
y = [2.1, 2.0, 0.5]
plot(x,y)

quit()

うむ。これはいい。




リンク備考
matplotlib pyplot tutorial
matplotlib.pyplot.plot
Matplotlibサンプル集