2 summary:: Two point difference filter
3 related:: Classes/LPZ1, Classes/HPZ2
4 categories:: UGens>Filters>Linear
9 A special case fixed filter. Implements the formula:
12 out(i) = 0.5 * (in(i) - in(i-1))
15 Which is a two point differentiator.
29 Output will be multiplied by this value.
34 This value will be added to the output.
42 { WhiteNoise.ar(0.25) }.play;
44 { HPZ1.ar(WhiteNoise.ar(0.25)) }.play;
46 // HPZ1 is useful to detect changes in a signal:
50 var changingSignal = LFNoise0.ar(1000);
51 var hpz1 = HPZ1.ar(changingSignal);
52 [hpz1, hpz1 > 0, hpz1.abs > 0]