摘要: import matplotlib.pyplot as plt import numpy as np # 绘制普通图像 x = np.linspace(-1, 1, 50) y1 = 2 * x + 1 y2 = x**2 plt.figure() plt.plot(x, y1) plt.plot( 阅读全文
posted @ 2018-11-16 10:51 巨兽~墨菲特 阅读(106) 评论(0) 推荐(0) 编辑