From: haferbox on
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
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
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