美文网首页
Figure 图像

Figure 图像

作者: 李小夭 | 来源:发表于2019-08-25 10:14 被阅读0次
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-3,3,50)
y1 = 2*x+1
y2 = x**2

plt.figure()后面紧跟每一个图形窗口

plt.figure()
plt.plot(x,y1)

plt.figure()
plt.plot(x,y2)

plt.show()
y1 = 2*x+1.png
y2 = x**2.png

两条线绘在同一窗口

plt.figure(num=3,figsize=(8,5))
plt.plot(x,y2)
plt.plot(x,y1,color='red',linewidth=1.0,linestyle='--')
plt.show()
image.png

Matplotlib学习教程来源请戳这里

相关文章

网友评论

      本文标题:Figure 图像

      本文链接:https://www.haomeiwen.com/subject/gykhectx.html