Delays the input by 2 samples.
in |
Input signal. |
mul |
Output will be multiplied by this value. |
add |
This value will be added to the output. |
(
plot({
var z;
z = Dust.ar(1000);
[z, z - Delay2.ar(z)] // [ original, subtract delayed from original ]
}))