Python使用Matplotlib库绘制y=2x+1和y=x2的图形,并设置坐标轴的名称和图例。
import matplotlib.pyplot as plt
import numpy as np
plt.xlabel('x轴',fontproperties='SimHei',fontsize=16)
plt.ylabel('y轴',fontproperties='SimHei',fontsize=16)
x=np.arange(1,5,1)
plt.plot(x,2*x+1,'red',lw=2)
plt.plot(x,x**2,'b',linestyle='dashed',lw=2)
plt.legend(['2*x+1','x**2'])
plt.show()
结果