摘要: 简单移动平均(sma) def moving_average(f_t): if type(f_t) is not np.ndarray: raise TypeError\ ('Expected one dimensional numpy array.') if f_t.shape[1] != 1: 阅读全文
posted @ 2018-08-05 21:36 马贡多在下雨 阅读(910) 评论(0) 推荐(0)