comb filters good model for exponentially decaying echoesgood model for exponentially decaying...

12

Upload: noemi-curley

Post on 16-Dec-2015

217 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)
Page 2: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters

Page 3: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters

• Good model for exponentially Good model for exponentially decaying echoes decaying echoes

impulse input:output:(scaling factor = .9)

Page 4: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters• Applying a comb filter to a sine wave at the Applying a comb filter to a sine wave at the

fundamental frequency produces a sharper fundamental frequency produces a sharper rolloff, but doesn't change the fundamental. rolloff, but doesn't change the fundamental.

[iv:37] sine wave, 261.6 Hz [iv:38] with comb filterat 261.6 Hz

Page 5: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters• Combing a sine wave produces Combing a sine wave produces

only the fundamental frequency, only the fundamental frequency, no matter what the comb no matter what the comb frequency, because the comb frequency, because the comb does not produce its own does not produce its own frequency.frequency.

• However, it can change the However, it can change the amplitude and quality of the amplitude and quality of the sound by giving a "metallic" ring.sound by giving a "metallic" ring.

Page 6: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters• Applying a comb filter to an oboe spectrum Applying a comb filter to an oboe spectrum

at the fundamental frequency produces a at the fundamental frequency produces a rich spectrum with amplitude peaks similar rich spectrum with amplitude peaks similar to the teeth of a comb.to the teeth of a comb.

[iv:15] oboe at 261.6 Hz [iv:39] with comb filterat 261.6 Hz

Page 7: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FiltersComb FiltersComb FiltersComb Filters• At four times the fundamental frequency, the At four times the fundamental frequency, the

comb filter gives a metallic ring, and gives only comb filter gives a metallic ring, and gives only three frequencies at harmonic intervals from three frequencies at harmonic intervals from itself.itself.

• The filter frequency is the loudest of these.The filter frequency is the loudest of these.

[iv:40] with comb filter at 1046.4 Hz

Page 8: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Musical ExamplesMusical ExamplesMusical ExamplesMusical Examples• Bach, Bach, Fugue #2 in C MinorFugue #2 in C Minor

• [iv:41][iv:41] with comb filter at 880 Hz with comb filter at 880 Hz• [iv:42][iv:42] with comb filter at 880 Hz, then lowpass with comb filter at 880 Hz, then lowpass

filter frequency changing from 220 to 7040filter frequency changing from 220 to 7040• [iv:43][iv:43] with a flickering bank of comb filters at 10 with a flickering bank of comb filters at 10

harmonic frequencies from 246.9harmonic frequencies from 246.9

Page 9: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FilterComb FilterComb FilterComb Filter

• score filescore file

;comb.sco - use with comb.orc

;; startstart durdur

i2i2 11 2.02.0 ...... ; note list; note list

;; comb comb percent percent

;; st dur amp freq attk dec ring combst dur amp freq attk dec ring comb

;i94;i94 1 2.0 1.0 261.6 0.45 0.15 1.5 1.01 2.0 1.0 261.6 0.45 0.15 1.5 1.0

i94i94 1 2.0 1.0 1046.4 0.45 0.15 1.5 1.01 2.0 1.0 1046.4 0.45 0.15 1.5 1.0

Page 10: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FilterComb FilterComb FilterComb Filter

;comb.orc - use with comb.scogacomb init 0 ; initialize gacomb;--------------------------------------------------instr 2 ; regular instrument...; add the signal for this note to the global signalgacomb = gacomb + asig

out asig ; don't output asig hereendin

;--------------------------------------------------

Page 11: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FilterComb FilterComb FilterComb Filterinstr 94 ; global comb filteridur = p3iamp = p4icombfreq = p5 ; comb filter frequencyiattack = p6 ; modulator frequencyidecay = p7isus = idur - iattack - idecayiring = p8 ; ring time for comb filterring time for comb filtericomb = p9 ; percent for combed signal; make sure the values are between 0 and 1:icomb = (icomb <= 0 ? .01 : icomb)icomb = (icomb >= 1 ? .99 : icomb)iacoustic = 1 - icomb ; rest of signal is acousticrest of signal is acousticp3 = p3 + iring + .1 ; lengthen p3lengthen p3iloop = 1/icombfreq ; loop timeloop timeinorm = 39.7 ; normalize the tonenormalize the tone

Page 12: Comb Filters Good model for exponentially decaying echoesGood model for exponentially decaying echoes impulse input: output: (scaling factor =.9)

Comb FilterComb FilterComb FilterComb Filter

; comb arguments: signal, ring time, loop time

acomb comb gacomb, iring, iloop

aenv linseg 0,iattack,iamp,isus,iamp,idecay,0,1,0

acomb = acomb * aenv

; mix signal (percent acoustic and percent combed)

asig = (iacoustic * gacomb) + (icomb * acomb)

out asig ; output signal

gacomb = 0 ; reset gacomb to prevent feedback

endin