Re: [PD] Filling an audio array. Question..

2009-11-12 Thread Georg Werner
Hi, sorry i forgot the attachment ... g. #N canvas 143 316 1280 944 10; #N canvas 0 22 450 300 (subpatch) 0; #X array array2 1024 float 2; #X coords 0 1 1024 0 200 140 1; #X restore 126 382 graph; #X obj 158 297 tabwrite~ array2; #X obj 132 118 unpack; #X msg 262 80 bang; #X obj 132 196 line~;

[PD] Filling an audio array. Question..

2009-11-11 Thread Rory Walsh
I want to fill an audio array of 1024 samples with two exponential curves, a simple attack and decay envelope. While I can easily create the curves I want I'm have a hard time putting them into an array. What is teh best practice for loading different curves into an audio array using tilde

Re: [PD] Filling an audio array. Question..

2009-11-11 Thread Stephen Lucas
You may be interested in using [vline~], which allows you to easily schedule ramps all with one message. You may also be experiencing a problem with synchronizing your event rate delays to the writing of your audio array. Look into [bang~] for stuff like this. Look at this patch to see if it

Re: [PD] Filling an audio array. Question..

2009-11-11 Thread João Pais
maybe my abstraction [jmmmp/array-edit] (in pd-ext) can help you. play around with it, or tell me about something you might want improved. I want to fill an audio array of 1024 samples with two exponential curves, a simple attack and decay envelope. While I can easily create the curves I want

Re: [PD] Filling an audio array. Question..

2009-11-11 Thread Georg Werner
Hi, Rory Walsh: I want to fill an audio array of 1024 samples with two exponential in pd there are no audio arrays its just how you use it curves, a simple attack and decay envelope. While I can easily create the curves I want I'm have a hard time putting them into an array. What is teh