**
Matplotlib学习笔记——Figure
**
此figure的意思与matlab中figure相近,都是一个画布
import matplotlib.pyplot as plt
import numpy as np
import math
x = np.linspace(-2*math.pi, 2*math.pi, 100)
y1 = 3 * np.sin(x)
y2 = x**2 + 1
plt.figure(num=3) # 画布标为3
plt.plot(x, y1)
plt.figure(num=4) # 画布标为4
plt.plot(x, y2, color='red', linewidth=5.0, linestyle='--')
plt.show()