1 // a simple comb filter
2 // Ge Wang (gewang@cs.princeton.edu)
5 Impulse imp => Gain out => dac;
7 out => Delay delay => out;
14 L::samp => delay.delay;
15 // set dissipation factor
16 Math.pow( R, L ) => delay.gain;
22 (Math.log(.0001) / Math.log(R))::samp => now;