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::.
29 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.
35 // modulate fundamental frequency, formant freq stays constant
36 { Formant.ar(XLine.kr(400,1000, 8), 2000, 800, 0.125) }.play
38 // modulate formant frequency, fundamental freq stays constant
39 { Formant.ar(200, XLine.kr(400, 4000, 8), 200, 0.125) }.play
41 // modulate width frequency, other freqs stay constant
42 { Formant.ar(400, 2000, XLine.kr(800, 8000, 8), 0.125) }.play