2 summary:: Output the last value before the input changed
3 related:: Classes/LeastChange, Classes/MostChange
4 categories:: UGens>Triggers
9 Output the last value before the input changed more than a threshhold.
23 Difference threshhold.
29 d = { arg freq=440; SinOsc.ar(LastValue.ar(freq, 20), 0, 0.2) }.play;
39 Return the difference between currrent and the last changed:
42 d = { arg out=0, val=1;
44 abs(val - LastValue.kr(val)) * 400 + 200,