Hello,
I'm porting to PD a physical model I created in Matlab. I can't see how to import coefficients and list of numbers from Matlab (i.e. text file) to PD. I need to get these coefficients only once in a while, so a loadbang and several bangs later would be ok.
Example: I have a script in Matlab to calculate SOS (second order section) coefficients for a IIR filter. I can use in PD several [biquad~] blocks to create the IIR, but I don't know how to import coefficients. I can save them as text files in several way (comma delimited, tab delimited, etc) but I can't see how to import them in Matlab and feed it to biquad. And after reading them and storing in an array, what if, for example I have 4x6 coeffs? How do I parse them in order to send 6 coeffs to the first biquad, then 6 to the second and so on?
There seems to be not so much about this on the internet...