您的主要问题是每次迭代都浪费了太多信息。如果要快速运行,则需要保持与帧长相同大小的缓冲区。
此代码将为整个数据集运行移动平均值:
(不是真正的C#,但您应该了解一下)
decimal buffer[] = new decimal[period];decimal output[] = new decimal[data.Length];current_index = 0;for (int i=0; i<data.Length; i++) { buffer[current_index] = data[i]/period; decimal ma = 0.0; for (int j=0;j<period;j++) { ma += buffer[j]; } output[i] = ma; current_index = (current_index + 1) % period; }return output;
请注意,保持累积的运行量而不是保留整个缓冲区并为每次迭代计算值可能很诱人,但这不适用于非常长的数据长度,因为您的累加总和会变得很大,以至于增加较小的附加值导致舍入错误。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)