-
vezz
Hi,
I have an abstraction which takes as input a list consisting of three numbers (a b c). After some computation it outputs four lists of each three numbers. Now I want to feed each of these four lists back to the input of the abstraction. And so on... to a certain depth.
Is it possible to do this in Pd? I'm only getting the rightmost childtree, instead of the whole tree...
-
vezz
Hi, I had to wait some time before posting because it was part of our homework for some course on audio processing.
This is the most elegant I could come up with. Please have a look..
-
vezz
Sure, please take a look at the following incorrect solution.
Just found a correct solution to it.. Can post it later on if you want. -
vezz
Because the output consists of multiple lists, I guess I need to store them in a buffer. Without the buffering it will traverse depth-first and stop, because the other lists are lost.
However, I'm still trying to apply this in practice
-
vezz
Ok, just found out about buffers... That'll do the trick I guess.