摘要: 一 figure使用 1 import numpy as np 2 import matplotlib.pyplot as plt 3 4 # 从-3到中取50个数 5 x = np.linspace(-3, 3, 50) 6 print(x) 7 y1 = 2*x+1 8 y2 = x**2 9 阅读全文
posted @ 2020-01-11 23:26 岑夫子 阅读(15397) 评论(0) 推荐(0) 编辑