I'm trying to use the GSL library to solve ODE and I'm having some difficulty using the void pointer
I need to send a parameter over that supposed to contain an array of an array:
double k1[2][4];
which gets sent to
gsl_odeiv_system sys = {func, jac, 2, &k1};
this gets passed on to both func and jac as *params
int func (double t, const double y[], double f[], void *params)
in func, I'm trying to extract k1 via:
double k1[2][4];
k1 = *(double[][])params;
or
k1 = (double[][])params;
or...
k1 = *(double *)params;
etc
I guess the question is: is there a one line solution?