close

今天第一次使用spyderlib, 這是一個由Python(x, y)

所開發出來的整合開發環境, 跟MATLAB的人機介面有相當多雷同之處,

可以方便觀察和修改陣列的值, 真是貼心的設計!!

Download

如果當初你是安裝64位元版本Python, 就必須下載spyder-2.2.5.win-amd64.exe

否則下載spyder-2.2.5.win32.exe 這樣才有辦法使用

附註:

Spyder v2.2.5 -- stable release for Python 2.5 to 2.7

image

可以直接點選想要瀏覽或編輯的元素

image

---------------------------------------------------

import numpy as np
import pylab as pl
x = np.arange(-1,1,0.05)
y = np.power(x, 2)
 
fig = pl.figure()
ax = fig.gca()
ax.set_xticks(np.arange(-2,2,0.1))
ax.set_yticks(np.arange(0,1.,0.1))
pl.scatter(x,y)
pl.grid()
pl.xlabel('X axis')
pl.ylabel('Y axis')
pl.show()

image

設定工作目錄

image

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 me1237guy 的頭像
    me1237guy

    天天向上

    me1237guy 發表在 痞客邦 留言(0) 人氣()