matplotlib sinx cosx 圖像

from matplotlib import pyplot as plt import numpy as np plt.figure(figsize=(12,6))#生成的圖片的大小 x = np.linspace(-2 * np.pi,2*np.pi,100)#設置一個序列(-2pi,2pi,之間設置100個點) y = np.sin(x)#需要繪製的函數 y1 = np.cos(x) plt
相關文章
相關標籤/搜索