摘要: import numpy as np import matplotlib.pyplot as plt #创建新图片,设定图片尺寸 fig = plt.figure(figsize=(6,3)) x = np.linspace(-9,9,201) y = np.sin(x) #设置坐标轴范围 plt. 阅读全文
posted @ 2021-02-18 22:43 Bill_H 阅读(144) 评论(0) 推荐(0) 编辑