A one pole filter. Implements the formula:
out(i) = ((1 - abs(coef)) * in(i)) + (coef * out(i-1)).
in |
The input signal. |
coef |
Feedback coefficient. Should be between -1 and +1 |
mul |
Output will be multiplied by this value. |
add |
This value will be added to the output. |
{ OnePole.ar(WhiteNoise.ar(0.5), 0.95) }.play
{ OnePole.ar(WhiteNoise.ar(0.5), -0.95) }.play
{ OnePole.ar(WhiteNoise.ar(0.5), Line.kr(-0.99, 0.99, 10)) }.play