2 summary:: Parametric filter.
3 categories:: UGens>Filters>Linear
8 Attenuates or boosts a frequency band.
22 Center frequency of the band in Hertz.
27 The reciprocal of Q (bandwidth / cutoffFreq).
32 Amount of boost (db > 0) or attenuation (db < 0) of the
38 Output will be multiplied by this value.
43 This value will be added to the output.
50 // mixer parametric eq as wahwah
51 { MidEQ.ar(Saw.ar(200,0.2), FSinOsc.kr(1, 0, 24, 84).midicps, 0.3, 12) }.play
57 in = PinkNoise.ar(0.2) + SinOsc.ar(600, 0, 0.1);
58 MidEQ.ar(in, SinOsc.kr(0.2, 0.5pi) * 2 + 600, 0.01, -24)
63 // first start the synth
65 x = {| freq=400, db=0, rq=0.1 |
67 in = SinOsc.ar([ 400, 420 ], 0, 0.4);
68 MidEQ.ar(in, freq, Lag.kr(rq, 0.3), db)
72 // now play with its parameters to hear how the filter affects two frequencies
73 // that are very close to each other