1.ipython3를 –pylab parameter로 실행 c:>ipython3 –pylab

ipython_초기실행

2.numpy arange array 0~359 생성 d = np.arange(360)

3.sin 값으로 변환

d = np.sin(deg2rad(d))

4.matplotlib의 plot으로 sine graph출력 plot(d)

figure_1