Case description:
On the accumulator:
data input : 5
init: 2
fun: lambda patch. data input (5) - init (2)
On the while:
While connected to an om>= 3
The loop I need is to keep substracting the accumulated value (and outputting the result of each iteration). That would be:
First iteration:
5 - 2 = 3
output 3
Second iteration:
3 - 2 = 1
output 1
I don’t get this result.
My question is: where in the accumulator do I have to connect the om>= conditional (which is connected to the while) ?