摘要: import numpy as np import matplotlib.pyplot as plt t = np.arange(1, 10, 1) # 生成1到9的时间序列列表 y = t * 0.9 + np.sin(t) # 生成向上波动的y轴数据列表 model = np.polyfit(t 阅读全文
posted @ 2020-04-10 17:46 Iceberg_710815 阅读(277) 评论(0) 推荐(0) 编辑