Hi,

You need to capitalize things in the right places.

gsl_cdf_gaussian_P
gsl_cdf_gaussian_Pinv


You need to capitalize these things. Also, your small program doesn't compile for other reasons.

test.cpp:8:22: error: ‘r’ was not declared in this scope
     z = gsl_ran_flat(r,a,b);
                      ^
test.cpp:8:9: error: ‘gsl_ran_flat’ was not declared in this scope
     z = gsl_ran_flat(r,a,b);
         ^~~~~~~~~~~~
test.cpp:8:9: note: suggested alternative: ‘gsl_cdf_flat_Q’
     z = gsl_ran_flat(r,a,b);
         ^~~~~~~~~~~~
         gsl_cdf_flat_Q

- Adam

Reply via email to