I'm trying to use the [rfft~] object to do some analysis, and I'd like to send the output of the FFT to another program using OSC. I'm using [sendOSC] from the oscx library, and giving it a message like:
[send /this/is/the/path $1(
Then i'm giving as input to this message the list of values from the FFT, which might contain thousands of numbers for a typical FFT window (patch attached). Of course, the $1 only takes the value of the first element of the list, not the entire list that I want to send.
So my question is this: Is there a dollarsign-like placeholder for lists?
Or, can someone suggest another way to send long lists over OSC, besides typing out $1 $2 ... $2048 in the message box?
Thanks in advance for your advice.