aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/050-differential/uebungsaufgaben/airy.cpp
diff options
context:
space:
mode:
authorRunterer <37069007+Runterer@users.noreply.github.com>2022-05-26 15:44:34 +0200
committerGitHub <noreply@github.com>2022-05-26 15:44:34 +0200
commit97f9df441a8cf9e86545a7db2e0c1e935937638f (patch)
tree43adb2438e1e316c34997b13bb2d0fa3044f8f1b /buch/chapters/050-differential/uebungsaufgaben/airy.cpp
parentadded tikz -> kudos nic (diff)
parentMerge branch 'master' of github.com:AndreasFMueller/SeminarSpezielleFunktionen (diff)
downloadSeminarSpezielleFunktionen-97f9df441a8cf9e86545a7db2e0c1e935937638f.tar.gz
SeminarSpezielleFunktionen-97f9df441a8cf9e86545a7db2e0c1e935937638f.zip
Merge branch 'AndreasFMueller:master' into master
Diffstat (limited to 'buch/chapters/050-differential/uebungsaufgaben/airy.cpp')
-rw-r--r--buch/chapters/050-differential/uebungsaufgaben/airy.cpp4
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) {