in gsl code complex struct looks like:
typedef struct
{
double dat[2];
}
gsl_complex;
my complex struct looks like that:
struct _gsl_complex {
double dat[2];
}
alias gsl_complex = _gsl_complex*;
So, what im doing wrong?
in gsl code complex struct looks like:
typedef struct
{
double dat[2];
}
gsl_complex;
my complex struct looks like that:
struct _gsl_complex {
double dat[2];
}
alias gsl_complex = _gsl_complex*;
So, what im doing wrong?