Hi all, thanks for your recent help with [list-abs] - got it working in the end albeit in a roundabout way. Now I'm trying to process a list of partials and send the values off to an additive synth, if I could create a variable wireless send it would simplify matters greatly - is this possible? For example, [send FRQ$1] with $1 substituted for a different value each time?
I'm sure the FCC wouldn't like it - but can Pd do it? Thanks in advance, Rich
2012/7/27 richard duckworth richduckworth@yahoo.com
Hi all, thanks for your recent help with [list-abs] - got it working in the end albeit in a roundabout way. Now I'm trying to process a list of partials and send the values off to an additive synth, if I could create a variable wireless send it would simplify matters greatly - is this possible? For example, [send FRQ$1] with $1 substituted for a different value each time?
create [send] (no argument) and give it the send symbol via its right inlet, which in turn can come from for example [makefilename FRQ%d] gr, Tim
I'm sure the FCC wouldn't like it - but can Pd do it?
Thanks in advance, Rich
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Or you can prefix your values with an index and use a common send with a route after it
[r partial_data] | [route 0]
[r partial_data] | [route 1]
etc.
On Fri, Jul 27, 2012 at 1:11 PM, tim vets timvets@gmail.com wrote:
2012/7/27 richard duckworth richduckworth@yahoo.com
Hi all, thanks for your recent help with [list-abs] - got it working in the end albeit in a roundabout way. Now I'm trying to process a list of partials and send the values off to an additive synth, if I could create a variable wireless send it would simplify matters greatly - is this possible? For example, [send FRQ$1] with $1 substituted for a different value each time?
create [send] (no argument) and give it the send symbol via its right inlet, which in turn can come from for example [makefilename FRQ%d] gr, Tim
I'm sure the FCC wouldn't like it - but can Pd do it? Thanks in advance, Rich
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Pd-list@iem.at mailing list UNSUBSCRIBE and account-management -> http://lists.puredata.info/listinfo/pd-list
Another way is to broadcast via a message starting with a semicolon.
[6 \ [0
| |
[pack 0 0]
|
[; $2-frq $1(
[r 0-frq] | [6 \
--Funs