你知道任何并行修正移动平均算法吗?我想快速计算移动平均线而不是sequentialalgorithms.我想使用并行算法,但我仍然没有找到解决方案。我发现最好的算法是顺序算法modifiedmovingaverageformeasuringcomputerperformance:new_avg=alfa(new_time,previous_time)*new_value+(1-alfa(new_time,previous_time))*previous_avgalfa(new_time,previous_time)=1-exp(-(new_time-previous_time)/mov