help-gsl
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: compilation error


From: Adam Majer
Subject: Re: compilation error
Date: Tue, 30 Jun 2020 12:41:22 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.9.0

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

[Prev in Thread] Current Thread [Next in Thread]