2 summary:: Formant oscillator
3 categories:: UGens>Generators>Deterministic
8 Generates a set of harmonics around a formant frequency at a given
17 Fundamental frequency in Hertz. (control rate)
20 Formant frequency in Hertz. (control rate)
23 Pulse width frequency in Hertz. Controls the bandwidth of the
24 formant. (control rate)
26 Must be greater than or equal to code::fundfreq::.
33 The frequency inputs are read at control rate only, so if you use an audio rate UGen as an input, it will only be sampled at the start of each audio synthesis block.
39 // modulate fundamental frequency, formant freq stays constant
40 { Formant.ar(XLine.kr(400,1000, 8), 2000, 800, 0.125) }.play
42 // modulate formant frequency, fundamental freq stays constant
43 { Formant.ar(200, XLine.kr(400, 4000, 8), 200, 0.125) }.play
45 // modulate width frequency, other freqs stay constant
46 { Formant.ar(400, 2000, XLine.kr(800, 8000, 8), 0.125) }.play