Efficient moving average algorithm
Hello,Thanks to those who have posted on here before, I've found some useful answers!I have several large data sets (20 million points each!) from an oscilloscope. I want to calculate a moving average. However, the algorithm I've devised is very slow. Here is the code for my formula:"If(Row() < 100, Empty(), Summation(i = Row() - 99, Row(), :Current[i,Empty()]) / 100)"As the width of the averaging...