Triggers when a value changes.
A special case fixed filter.
input |
signal input |
threshold |
threshold |
Implements the formula:
out(i) = abs(in(i) - in(i-1)) > thresh
detect changes in a signal:
xxxxxxxxxx
(
{
var changingSignal = LFNoise0.ar(1000);
var changed = Changed.ar(changingSignal);
[changingSignal, changed]
}.plot2
);