import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-1,1,100)
y1 = 2*x + 1
y2 = x**2
plt.figure()#创建第一个图
plt.plot(x,y1)
plt.figure()#创建第二个图
plt.plot(x,y2)
plt.show()
相关文章
- 03-25matplotlib绘图2 figure图像
- 03-25Pyqt5+matplotlib+NIFTI(nii)图像显示(2)显示融合图像
- 03-25python数据分析006_Python 2D绘图库Matplotlib
- 03-25Python绘图之matplotlib2D绘制折线图
- 03-25Python可视化学习(2):Matplotlib快速绘图基础
- 03-25Python开发环境Wing IDE使用教程之matplotlib 2D绘图库代码调试技巧
- 03-25Python:2D绘图库matplotlib学习总结
- 03-25python科学计算学习二:matplotlib绘图,图标注释(2)
- 03-25NumPy Beginner's Guide 2e 带注释源码 九、使用 Matplotlib 绘图