aboutsummaryrefslogtreecommitdiffstats
path: root/buch/chapters/050-differential/uebungsaufgaben/airy.cpp
diff options
context:
space:
mode:
authorenezerdem <105669082+enezerdem@users.noreply.github.com>2022-05-18 21:14:53 +0200
committerGitHub <noreply@github.com>2022-05-18 21:14:53 +0200
commitfee6060d4e05b554b52a2cbba77fbc167478257d (patch)
treeb7a61414795128d168760a94d503154c38a4c2d9 /buch/chapters/050-differential/uebungsaufgaben/airy.cpp
parentno message (diff)
parentMerge pull request #12 from HeadAndToes/master (diff)
downloadSeminarSpezielleFunktionen-fee6060d4e05b554b52a2cbba77fbc167478257d.tar.gz
SeminarSpezielleFunktionen-fee6060d4e05b554b52a2cbba77fbc167478257d.zip
Merge pull request #1 from AndreasFMueller/master
update
Diffstat (limited to '')
-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) {