Re: [CM] float-vectors

2017-06-15 Thread bil
float-vector->channel will write a float-vector's contents to a Snd channel. For element-at-a-time access, use float-vector-ref which can be implicit: (do ((i 0 (+ i 1))) ((= i 22050)) (outa i (vect i))) where (vect i) is shorthand for (float-vector-ref vect i). If you want a generator, perhaps

[CM] float-vectors

2017-06-15 Thread James Hearon
Hi, I'm still struggling with this a bit. I'm trying to understand more about float-vectors and output to be able to debug them. How would you go about putting float-vector values on the output, or do they always need a generator of some sort? ex. (I'm imagining) something like...