2 summary:: Two zero fixed lowpass
3 related:: Classes/BPZ2, Classes/BRZ2, Classes/HPZ2
4 categories:: UGens>Filters>Linear
9 A special case fixed filter. Implements the formula:
11 out(i) = 0.25 * (in(i) + (2 * in(i - 1)) + in(i - 2)).
26 Output will be multiplied by this value.
31 This value will be added to the output.
39 { WhiteNoise.ar(0.25) }.play;
41 { LPZ2.ar(WhiteNoise.ar(0.25)) }.play;