摘要: 一、灰度预测 def GM11(x0): #自定义灰色预测函数 import numpy as np x1 = x0.cumsum() #1-AGO序列 z1 = (x1[:len(x1)-1] + x1[1:])/2.0 #紧邻均值(MEAN)生成序列 z1 = z1.reshape((len(z 阅读全文
posted @ 2022-04-04 23:19 Jessie- 阅读(186) 评论(0) 推荐(0) 编辑