close


import matplotlib.pyplot as plt
import numpy as np

# 畫一個 0~180 度的 sin 波
x = np.arange(0, 180)
y = np.sin(x*np.pi/180.0)

plt.plot(x, y)

# 設定圖的範圍
plt.xlim(-30, 390)
plt.ylim(-1.5, 1.5)


plt.xlabel("x-axis")
plt.ylabel("y-axis")
plt.title("The title")

plt.show()


http://formatmysourcecode.blogspot.com/

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

    漫漫長路

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