

INTEGRATOR
----------

Outputs the integral of the incoming signal (in discrete time, this simply translates as the cumulative sum of all the incoming samples). This module is therefore pretty an accumulator which continuously outputs the value of a sum such that:

 output = sum = input + K/10 * sum

where K is the integration factor. By setting K to 10 (10V = 1 in floating point units, default) the module behaves like a straight integrator/accumulator, and with K set to 0 it simply outputs the input. Values of K close to but less than unity (eg. 9.99V) can be very useful to prevent the sum "exploding" in audio applications.

Warning:
Use this module cautiously and only if you know what you are doing, since it can rapidly saturate the audio lines

Note:
by cascading a Derivator and an Integrator, the result will be identical (one reverts the effect of the other). When working on the derivative of a signal, the common workflow is: 1.derivate the signal; 2.process the derivative; 3.integrate the result

Note:
you can also specify negative values for K. Allowed values range from -10 to +10.
