2 summary:: Two point average filter
4 categories:: UGens>Filters>Linear
9 A special case fixed filter. Implements the formula:
11 out(i) = 0.5 * (in(i) + in(i-1))
13 which is a two point averager.
27 Output will be multiplied by this value.
32 This value will be added to the output.
40 { WhiteNoise.ar(0.25) }.play;
42 { LPZ1.ar(WhiteNoise.ar(0.25)) }.play;