[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [sc-dev] FilterUGens.cpp 1.11 7 weeks jrhb



This change is not correct. This makes it into a Lag.

RCS file: /cvsroot/supercollider/SuperCollider3/source/plugins/FilterUGens.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -r1.10 -r1.11
807c807
<                               ZXP(out) = y1 = y0 + b1 * y1;
---
                               ZXP(out) = y1 = y0 + b1 * (y1 - y0);

If b1 == 1.0 then this should be a true integrator which means that the output is the sum of the input.
that is true of the original expression but not the second.

There was a bug in Integrator, but this was the wrong fix.

ok, I see.

Please discuss changes first.

I will try to point out changes more clearly. Probably you had missed this one:
http://www.create.ucsb.edu/pipermail/sc-users/2004-November/014329.html
--








.