diff options
author | Patrik Müller <36931350+p1mueller@users.noreply.github.com> | 2022-05-28 15:43:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-28 15:43:52 +0200 |
commit | c0c7b6cd974c6acb3260ad9ad97c06aaf7327349 (patch) | |
tree | a88c738281fd1e8e282e278200c7fe0e22429820 /buch/chapters/050-differential | |
parent | Error correction & add gamma integrand plot (diff) | |
parent | Merge pull request #16 from Runterer/master (diff) | |
download | SeminarSpezielleFunktionen-c0c7b6cd974c6acb3260ad9ad97c06aaf7327349.tar.gz SeminarSpezielleFunktionen-c0c7b6cd974c6acb3260ad9ad97c06aaf7327349.zip |
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to 'buch/chapters/050-differential')
-rw-r--r-- | buch/chapters/050-differential/uebungsaufgaben/airy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/buch/chapters/050-differential/uebungsaufgaben/airy.cpp b/buch/chapters/050-differential/uebungsaufgaben/airy.cpp index e4df8e1..eb5c6be 100644 --- a/buch/chapters/050-differential/uebungsaufgaben/airy.cpp +++ b/buch/chapters/050-differential/uebungsaufgaben/airy.cpp @@ -44,8 +44,8 @@ double h0f1(double c, double x) { double f1(double x) { // unfortunately, gsl_sf_hyperg_0F1 does not work if c<1, because // it uses a relation to the bessel functions - //return gsl_sf_hyperg_0F1(2/3, x*x*x/9.); - return h0f1(2./3., x*x*x/9.); + return gsl_sf_hyperg_0F1(2/3, x*x*x/9.); + //return h0f1(2./3., x*x*x/9.); } double f2(double x) { |