Hey all,
I can't seem to find a for loop for PD. Abstraction or external.
Ideally it would be nested so that you could loop through n number of dimentions. You just tell it the start end and step for each dimention:
for(x=0; x<=10; x++) { for(y=0; x<=10; y++) { toOutInt(0, x); toOutInt(1, y); } }
Or something the like...
Yes I'm doing too much matrix stuff!
I can whip up an external soon enough, but I figured somone has already beat me to it.
Thanks Ben