hsc3-0.16: Help/UGen/formant.help.lhs
Sound.SC3.UGen.Help.viewSC3Help "Formant"
Sound.SC3.UGen.DB.ugenSummary "Formant"
> import Sound.SC3
Modulate fundamental frequency, formant frequency stays constant.
> g_01 = formant AR (xLine KR 400 1000 8 RemoveSynth) 2000 800 * 0.125
Modulate formant frequency, fundamental frequency stays constant.
> g_02 =
> let f = mce [200, 300, 400, 500]
> ff = xLine KR 400 4000 8 RemoveSynth
> in formant AR f ff 200 * 0.125
Modulate width frequency, other frequencies stay constant.
> g_03 =
> let bw = xLine KR 800 8000 8 RemoveSynth
> in formant AR 400 2000 bw * 0.1