From: haferbox on 1 Jul 2010 16:31 Yep that'll do it... how embarrassing. I guess some good has come from this, I have now been introduced to swig. Thanks for all the info. -s
From: nedbrek on 1 Jul 2010 22:00 Hello all, "haferbox" <haferbox(a)gmail.com> wrote in message news:be6e2c80-2947-406d-94c8-f9b8b6fc414a(a)q12g2000yqj.googlegroups.com... > #define CORE_NUM_FREQ_POINTS 4 > > typedef struct { > double mag; > double phase; > } CoreMagPhasePoint; > > CoreMagPhasePoint g24[CORE_NUM_FREQ_POINTS]; > > for (i = 0; i < (CORE_NUM_FREQ_POINTS*2); i+=2) { > (*pMagPhasePoint)[i].mag = dbl; You might be having a structure packing problem. You have an array of 4 structures, each with 2 doubles. You then try to use it as an array of 8 doubles. If the compiler has inserted any space between them (not sure why it would) you will have problems... HTH, Ned
From: Eric Boudaillier on 2 Jul 2010 03:37 On Jul 1, 9:11 pm, haferbox <hafer...(a)gmail.com> wrote: > I would still like to understand what Im doing wrong in my example > code if anyone has input. Another point: Tcl_SetResult(interp, buf, TCL_STATIC); Should be: Tcl_SetResult(interp, buf, TCL_VOLATILE); -eric
First
|
Prev
|
Pages: 1 2 Prev: A package to parse Tcl code? Next: First announcment of the 10th EuroTcl Meeting |