Re: [PD] two dimensional array error in an external

2014-07-27 Thread Alexandros Drymonitis
I solved it by declaring the array in the object structure like this: float x_iem_coeff[5][2]; and in the new function I create another, one dimensional array, and run a nested for loop and set the local array's elements to x_iem_coeff[5][2] one by one. This seemed to work, no errors during

Re: [PD] two dimensional array error in an external

2014-07-27 Thread Jonathan Wilkes via Pd-list
On 07/27/2014 01:05 PM, Alexandros Drymonitis wrote: I solved it by declaring the array in the object structure like this: float x_iem_coeff[5][2]; and in the new function I create another, one dimensional array, and run a nested for loop and set the local array's elements to