What does low pass filter mean?

A filter that lets slow changes in a signal through and smooths away fast ones, such as sensor noise. The exponential filter, filtered = alpha * raw + (1 - alpha) * filtered, is the simplest; more smoothing always means more delay.

Also written as: low pass filters, low-pass filter, low-pass filters, exponential filter, exponential filters

In a lesson

Each new reading gets weight alpha; everything before it keeps the rest. The weights decay geometrically into the past, which is why it is called an exponentially weighted moving average, and in signal processing it is a first order low pass filter.

Learn it

Used in

Do the lesson in the simulator

All glossary terms