hsc3-0.11: Help/UGen/Filter/combN.help.lhs
> Sound.SC3.UGen.Help.viewSC3Help "CombN"
> Sound.SC3.UGen.DB.ugenSummary "CombN"
> import Sound.SC3.ID
Comb filter as resonator. The resonant fundamental is equal to
reciprocal of the delay time.
> let {n = whiteNoise 'a' AR
> ;dt = xLine KR 0.0001 0.01 20 RemoveSynth}
> in audition (out 0 (combN (n * 0.1) 0.01 dt 0.2))
> let {n = whiteNoise 'a' AR
> ;dt = xLine KR 0.0001 0.01 20 RemoveSynth}
> in audition (out 0 (combL (n * 0.1) 0.01 dt 0.2))
> let {n = whiteNoise 'a' AR
> ;dt = xLine KR 0.0001 0.01 20 RemoveSynth}
> in audition (out 0 (combC (n * 0.1) 0.01 dt 0.2))
With negative feedback
> let {n = whiteNoise 'a' AR
> ;dt = xLine KR 0.0001 0.01 20 RemoveSynth}
> in audition (out 0 (combC (n * 0.1) 0.01 dt (-0.2)))
Used as an echo.
> let {d = dust 'a' AR 1
> ;n = whiteNoise 'a' AR
> ;i = decay (d * 0.5) 0.2 * n}
> in audition (out 0 (combC i 0.2 0.2 3))