A one pole filter. Implements the formula:out(i) = ((1 - abs(coef)) * in(i)) + (coef * out(i-1)).
The input signal.
Feedback coefficient. Should be between -1 and +1
Output will be multiplied by this value.
This value will be added to the output.