1. 程式人生 > >matplotlib繪製sin、cos曲線

matplotlib繪製sin、cos曲線

import numpy as np
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']#用來正常顯示中文標籤
plt.rcParams['axes.unicode_minus']=False#用來正常顯示負號

x = np.linspace(0, 10, 1000)
y = np.sin(x) + 1
z = np.cos(x ** 2) + 1

plt.figure(figsize = (8, 4))
plt.plot(x,y,label='$\sin x+1$', color = 'red', linewidth = 2
) plt.plot(x,z,'b--',label='$\cos x^2+1$') plt.xlabel('Time(s)') plt.ylabel('Volt') plt.title('A Sample Example') plt.ylim(0,2.2) plt.xlim(0,10) plt.legend(loc='best')

這裡寫圖片描述