[python] 史上最強移動平均法!! 10月 19, 2016 移動平均法! 今天為了幫我的 IMU 做點低通濾波,跑去查了一下資料。 由於有人推薦使用 移動平均法去計算,我就稍微查了一下,發現了這個 code ... import numpy as np def moving_average(a, n=3) : ret = np.cumsum(a, dtype=float) ret[n:] = ret[n:] - ret[:-n] return ret[n - 1:] / n 閱讀完整內容