How you you concatenate multiple sounds into one longer sound? Specifically in a loop that creates each piece of the sound.
I'm experimenting with phase distortion. I can make a single cycle if I explicitly code for each half of the waveform and return a seq of two sounds, but when I try to do this in a loop I can't get the seq to stay in order. I don't even know if seq is the right thing to use. The addition operator simply mixes the sounds.
I've read the Nyquist doc several times, grepped the example files, googled...nothing. Maybe I just don't know the right keyword? Append, concatenate, what else?