摘要: 多项式拟合的简单代码: import matplotlib.pyplot as plt import numpy as np x=[1,2,3,4,5,6,7,8] y=[1,4,9,13,30,25,49,70] a=np.polyfit(x,y,2) #用2次多项式拟合x,y数组 b=np.po 阅读全文
posted @ 2020-02-27 21:57 sgggr 阅读(1659) 评论(0) 推荐(0) 编辑
摘要: 转:https://www.cnblogs.com/jiawen010/p/10314542.html 通过pycharm创建Django项目是出现如下错误 AttributeError: module 'pip' has no attribute 'main' 环境信息:pycharm2017.3 阅读全文
posted @ 2020-02-27 21:31 sgggr 阅读(254) 评论(0) 推荐(0) 编辑