Recently i’m experimenting with delay lines and i was thinking about how to get to the extremes and to unusual results. So i also thought about a recursive UDO which creates several delay-lines. But it’s not working as i wish.
This is my UDO:
if iInstances > 1 then
aDelOut += delayArray(aDelOut, kDelTime+0.1, kFdbk, iInstances-1)
endif
xout aDelOut
endop
And this is what i wish to do:
I want to send a signal to the UDO which then is send to a delay line with feedback. This Signal then i sended into the recursive part till a fixed number of instances is reached.
But this is not working with this. I use print to print my instances - so there i also just get the first and the last. But the whole thing is not working as i thought. Maybe someone can help me?