Merge pull request #13 from whyang2080/master

gamma replaced with cwt_gamma
This commit is contained in:
Rafat Hussain 2019-04-15 13:58:38 +05:30 committed by GitHub
commit 36f0d305c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,7 +111,7 @@ void gauss(int N,int p,double lb,double ub,double *psi,double *t) {
t[i] = lb + delta * i;
}
den = sqrt(gamma(p+0.5));
den = sqrt(cwt_gamma(p+0.5));
if ((p+1)%2 == 0) {
num = 1.0;