[PD] Position opening at Bauhaus-Universität Weimar

2014-07-27 Thread Max
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The chair for Experimental Radio is looking for a new faculty member. As an employment will make understanding German necessary, the following job description is in German only: http://www.uni-weimar.de/de/universitaet/aktuell/stellenausschreibungen/

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 x_iem_coeff[5][2]

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 compil

[PD] two dimensional array error in an external

2014-07-27 Thread Alexandros Drymonitis
I'm building an external where I want to create a two dimensional array. I'm following this example which works well with the attached test code, but creates an error when I try to compile my external. The external's code w