MovingAverage and MovingMedian have been added to the built‐in Mathematica kernel.
ExponentialSmoothing is replaced by ExponentialMovingAverage.
MovingAverage and MovingMedian are now part of the built-in Mathematica kernel:
Version 5.2
MovingAverage[{2, 5, 4, 10, 8, 6 , 10}, 3]
Version 5.2
MovingMedian[{2, 5, 4, 10, 8, 6 , 10}, 3]MovingAverage also computes weighted moving averages:
MovingAverage[{2, 5, 4, 10, 8, 6 , 10}, {1 / 3, 1 / 2, 1 / 6}]ExponentialMovingAverage replaces ExponentialSmoothing:
Version 5.2
ExponentialMovingAverage[{2, 5, 4, 10, 8, 6 , 10}, 1 / 4]LinearFilter was available in previous versions of Mathematica and is now available on the web at library.wolfram.com/infocenter/MathSource/6784.