Signal accumulator
Name | Type | Opt | Description |
---|---|---|---|
initial-sum | float | opt | Sets the initial value for the sum. The default is 0. |
bang | Resets the sum to 0. | |
set | stored-sum [float] |
The word | , followed by a number, sets the stored value to that number, without triggering output.
signal | Each sample of the input is added to all previous samples to produce a running sum. For instance, assuming the sum started at 0, an input signal consisting of 1, 1, 1, 1 would produce 1, 2, 3, 4 as an output signal. |
Name | Description |
---|---|
+~ | Add signals |