2 summary:: One pole filter.
3 related:: Classes/OneZero
4 categories:: UGens>Filters>Linear
9 A one pole filter. Implements the formula:
13 out(i) = ((1 - abs(coef)) * in(i)) + (coef * out(i-1)).
29 Feedback coefficient. Should be between -1 and +1
34 Output will be multiplied by this value.
39 This value will be added to the output.
46 { OnePole.ar(WhiteNoise.ar(0.5), 0.95) }.play
48 { OnePole.ar(WhiteNoise.ar(0.5), -0.95) }.play
50 { OnePole.ar(WhiteNoise.ar(0.5), Line.kr(-0.99, 0.99, 10)) }.play