July 24th, 2007, 10:40 pm
thanks outrun, I should have used the search function before I go to the trouble of coding up the solution in the paper, I've dug up and tried to implement the inv cdf funtions in gsl. No joy so far, but I may have made a stupid mistake:gsl_qrng *qq = gsl_qrng_alloc(gsl_qrng_sobol, 2);double A=30.0;double B=4.0;for (i = 0; i < 256; i++){ double vv[2];gsl_qrng_get(qq, vv);double cc=gsl_cdf_gamma_Pinv(vv[0],A,B);printf("%f\n",cc);}