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/
全站熱搜
留言列表