pythonxy(2016-08-22)

python (x, y) 소프트웨어 주소 설치:http://python-xy.github.io, 800 여 M
로 컬 설치, c 디스크 선택, full 모드 로 변경
 
import numpy as np
 
import scipy as sp
 
import pylab as pl
 
x = np.linspace(0, 4*np.pi,100)
 
pl.plot(x, np.sin(x))
Out[5]: []

from scipy import signal

t = np.linspace(0, 10, 1000)

x = signal.chirp(t, 5, 10, 30)

pl.plot(t,x)

np.fromfunction(lambda i,j:(i+1)*(j+1),(9,9),dtype=int)

좋은 웹페이지 즐겨찾기